@import url('common.css');

/* Estilos principales para el formulario de inicio de sesión 3 de Colorlib */
.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;  
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    max-width: 2400px; /* Ajustar el ancho máximo para pantallas grandes */
    margin: 0 auto;
}

.wrap-login100 {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8); /* Fondo semi-transparente */
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 37px 55px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra */
    margin: 0 auto; /* Centrar el formulario */
}

.login100-form {
    width: 100%;
}

.login100-form-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: none; /* Sin fondo */
    border-radius: 0; /* Sin bordes redondeados */
}

.login100-form-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Mantener proporciones sin recortar */
    background: transparent; /* Fondo transparente */
}

.login100-form-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.wrap-input100 {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.input100 {
    font-size: 16px;
    color: #333;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: #f7f7f7;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 40px; /* Aumentar padding izquierdo para dar más espacio al icono */
    border: 1px solid #ccc;
}

.input100:focus {
    border-color: #4b6cb7; /* Cambiar color del borde al enfocar */
    box-shadow: none !important; /* Añadir sombra */
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% - 30px);
    height: 50px;
    border-radius: 25px;
    top: 0;
    left: 0;
    pointer-events: none;
    font-family: FontAwesome;
    font-size: 18px;
    color: #adadad;
    line-height: 1.2;
    padding-left: 15px;
}

.focus-input100::before {
    content: none; /* Elimina el contenido del pseudo-elemento */
}

.input100:focus + .focus-input100::before {
    top: -10px;
    font-size: 12px;
    color: #333;
}

.contact100-form-checkbox {
    padding-left: 30px;
    margin-bottom: 20px; /* Separación adicional */
}

.label-checkbox100 {
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.input-checkbox100 {
    display: none;
}

.input-checkbox100 + .label-checkbox100::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #adadad;
    border-radius: 2px;
    background: #fff;
    transition: all 0.4s;
}

.input-checkbox100:checked + .label-checkbox100::before {
    color: #333;
    background: #f7f7f7;
}

.contact100-form-checkbox .label-checkbox100::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #adadad;
    border-radius: 2px;
    background: #fff;
    transition: all 0.4s;
}

.contact100-form-checkbox .label-checkbox100::after {
    content: "\f00c"; /* Ícono de FontAwesome */
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.4s;
}

.input-checkbox100:checked + .label-checkbox100::after {
    color: #333; /* Color del ícono al marcar */
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #666;
    z-index: 1; /* Asegurar que los íconos estén visibles */
}

.container-login100-form-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login100-form-btn {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #333;
    transition: none !important;
    border: none;
    cursor: pointer;
}

.login100-form-btn:hover {
    background: #555;
}

/* Estilo para el icono de mostrar/ocultar contraseña */
.toggle-password-icon {
    font-size: 18px;
    color: #666;
    transition: color 0.3s ease;
    cursor: pointer;
}

.toggle-password-icon:hover {
    color: #333;
}

/* Estilos relacionados con el login */
.login-container, .form-container {
    width: 90%;
    margin: 50px auto;
}

.form-table {
    width: 90%;
}

.form-table td {
    display: block;
    text-align: left;
    padding-bottom: 10px;
}

.form-table td:first-child {
    text-align: left;
    padding-right: 0;
    font-weight: normal;
}

@media (max-width: 768px) {
    h1, h2 {
        margin-top: 20px !important; /* Reducir margen superior en móviles */
    }
}

/* Estilos básicos para las notificaciones */
.notification-box {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Ocultar el contenedor de notificaciones */
}

.notification-item {
    padding: 10px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: none !important;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Eliminar reglas que deshabilitan animaciones */
* {
    animation: none !important; /* Eliminar todas las animaciones */
    transition: none !important; /* Eliminar todas las transiciones */
}
