/* ============================================
   AUTENTICACIÓN - LOGIN Y ACTIVACIÓN
   ============================================ */

/* Fondo con gradiente */
body.auth-page {
    background: linear-gradient(135deg, #15287c 0%, #4b6bf8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container de Login */
.login-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
}

/* Container de Activación de Cuenta */
.activacion-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 100%;
}

/* Logo centrado */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

/* Requisitos de Contraseña */
.password-requirements {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.password-requirements ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}
