:root {
    --orange: #ff7428;
    --orange-light: #ff934a;
    --background-gray: #f6f7fb;
    --text-dark: #20232a;
}

/* 1. Eliminamos 'body' de aquí para no romper el Home */
/* 2. Usamos la nueva clase .login-container para centrar el Login */
.login-container {
    background: var(--background-gray); /* Tu color de fondo gris */
    min-height: 100vh; /* Ocupa toda la altura de la pantalla */
    display: flex; /* Activa el modo flexible */
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    width: 100%;
}

.content-wrapper.auth {
    background: var(--background-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-light {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 40px; /* Un poco más de espacio interno se ve mejor */
    /* CAMBIO CLAVE AQUÍ ABAJO 👇 */
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Si quieres quitar la sombra como dijiste antes, comenta la línea de box-shadow */
    box-shadow: 0 8px 36px rgba(255, 116, 40, 0.1);
}

/* 1. LOGO MÁS GRANDE */
.brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    width: 100%;
}
.brand-logo img {
    height: 100px; /* Antes 80px */
    max-width: 280px; /* Antes 220px */
    filter: drop-shadow(0 5px 18px rgba(255, 116, 40, 0.18));
}

.auth-form-light h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 6px;
    text-align: center;
    letter-spacing: 0.03em;
}
.auth-form-light h6 {
    font-weight: 400;
    color: #888a99;
    text-align: center;
    margin-bottom: 28px;
    font-size: 0.95rem; /* Un poco más pequeño (antes 1.08rem) */
}

.form-group {
    margin-bottom: 19px;
    position: relative;
}

/* 2. INPUTS MENOS REDONDEADOS */
.form-control {
    border-radius: 8px; /* Antes 13px (ahora es menos redondo) */
    border: 2px solid #eee;
    padding: 13px 16px;
    font-size: 1em; /* Texto un poco más pequeño (antes 1.08em) */
    box-shadow: 0 2px 12px rgba(255, 116, 40, 0.04);
    transition: border-color 0.2s;
    padding-right: 2.6rem !important; /* Espacio para el ojo */
}
.form-control:focus {
    border-color: var(--orange) !important;
    outline: none;
    box-shadow: 0 0 0 2.5px rgba(255, 116, 40, 0.14);
}
.is-invalid {
    border-color: #e6462b !important;
    background: #fff4f2;
    background-image: none !important;
}

/* 3. OJO NARANJA */
.toggle-password {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--orange); /* CAMBIO: Ahora es naranja (antes #b8bbca) */
    font-size: 1.1em;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
}
.toggle-password:hover {
    color: var(--orange-light);
}

/* 4. BOTÓN Y LETRAS MÁS PEQUEÑAS */
.auth-form-btn {
    background: var(--orange);
    color: #fff !important;
    border-radius: 12px; /* Ajustado para coincidir con los inputs */
    font-weight: 600;
    font-size: 1em; /* Más pequeño (antes 1.13em) */
    letter-spacing: 0.03em;
    padding: 12px 0;
    margin-top: 4px;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 116, 40, 0.13);
    transition: background 0.2s, box-shadow 0.2s;
}
.auth-form-btn:hover,
.auth-form-btn:focus {
    background: var(--orange-light);
    box-shadow: 0 8px 32px rgba(255, 147, 74, 0.15);
}

/* 5. TEXTO INFERIOR (CHECKBOX Y OLVIDASTE) MÁS PEQUEÑOS */
.my-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Asegura que usen todo el ancho disponible */
    margin-top: 20px !important;
}

.form-check-label {
    font-size: 1em;
    color: #888a99;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* 6. CHECKBOX NARANJA AL SELECCIONAR */
.form-check-input {
    accent-color: var(--orange); /* CAMBIO: Hace el check naranja nativamente */
    width: 16px;
    height: 16px;
    margin-top: 0;
    margin-right: 8px;
    cursor: pointer;
}

.auth-link {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9em; /* Hereda el tamaño reducido */
    transition: color 0.15s;
}
.auth-link:hover {
    color: var(--orange-light);
}

.invalid-feedback {
    font-size: 0.85em; /* Un poco más discreto */
    color: #e6462b;
    margin-top: 4px;
}

/* Media Query Móvil */
@media (max-width: 480px) {
    .auth-form-light {
        padding: 20px 15px;
    }
    .brand-logo img {
        height: 80px; /* Ajuste móvil */
    }
}

/* ... Tus estilos de login están arriba ... */

/* =========================================
   ESTILOS DEL MENÚ DESPLEGABLE (NAVBAR)
   ========================================= */

/* 1. Contenedor del avatar (Relative para que el menú flote respecto a él) */
.user-box {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* 2. El menú oculto */
.custom-dropdown {
    display: none; /* Oculto por defecto */
    position: absolute;
    top: 100%; /* Justo debajo */
    right: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Sombra suave */
    z-index: 9999;
    padding: 10px 0;
    margin-top: 15px; /* Un poco de separación */
    border: 1px solid #f0f0f0;
}

/* 3. CLASE ACTIVE: El JS la pone y el menú aparece */
.custom-dropdown.active {
    display: block !important;
    animation: fadeIn 0.2s ease-out;
}

/* 4. Enlaces dentro del menú */
.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: #333; /* Texto oscuro */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.dropdown-item-custom:hover {
    background-color: #fff4f2; /* Un fondo muy suave al pasar el mouse */
    color: var(--orange); /* Tu naranja */
    padding-left: 25px; /* Pequeño movimiento a la derecha */
}

.dropdown-item-custom i {
    width: 25px;
    text-align: center;
    margin-right: 5px;
    color: #999;
}
.dropdown-item-custom:hover i {
    color: var(--orange);
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

/* Animación opcional */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   CORRECCIÓN DEL DESTELLO AZUL EN EL BOTÓN
   ========================================= */

.auth-form-btn:focus,
.auth-form-btn:active,
.auth-form-btn:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    /* En lugar de azul, ponemos una sombra naranja suave o la quitamos */
    box-shadow: 0 0 0 0.2rem rgba(255, 116, 40, 0.4) !important;
    outline: none !important;
}

/* =========================================
   TOAST LIMPIO Y ALINEADO (ESTILO FINAL)
   ========================================= */

div:where(.swal2-container).swal2-top-end > .swal2-popup,
div:where(.swal2-container) div:where(.swal2-toast) {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    /* Sombra suave naranja igual al login */
    box-shadow: 0 8px 24px rgba(255, 116, 40, 0.12) !important;
    padding: 10px 16px !important; /* Padding equilibrado */
    display: flex !important;
    align-items: center !important; /* ESTO CENTRA TODO VERTICALMENTE */
    max-width: 360px !important;
    min-height: 50px !important; /* Altura mínima para que no se aplaste */
}

/* Título del mensaje */
div:where(.swal2-container) .swal2-title {
    color: #20232a !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* =========================================
   CORRECCIÓN FINAL: ICONOS ESCALADOS Y CENTRADOS
   ========================================= */

div:where(.swal2-container).swal2-top-end > .swal2-popup,
div:where(.swal2-container) div:where(.swal2-toast) {
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important; /* Centrado vertical CRÍTICO */
    /* ... resto de estilos de sombra/borde que ya tenías ... */
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(255, 116, 40, 0.12) !important;
    max-width: 360px !important;
    overflow: hidden !important; /* Evita que nada se salga */
}

/* Título */
div:where(.swal2-container) .swal2-title {
    font-size: 0.9rem !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    flex-grow: 1 !important; /* Ocupa el espacio restante */
}

/* =========================================
   TOAST: ICONOS FONTAWESOME + BARRA NARANJA
   ========================================= */

/* 1. Contenedor Limpio */
div:where(.swal2-container).swal2-top-end > .swal2-popup,
div:where(.swal2-container) div:where(.swal2-toast) {
    background: #ffffff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(255, 116, 40, 0.12) !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    max-width: 360px !important;
    overflow: hidden !important;
}

/* 2. Título */
div:where(.swal2-container) .swal2-title {
    color: #20232a !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* 3. ICONOS REALES (FONTAWESOME) */
div:where(.swal2-icon) {
    width: 24px !important;
    height: 24px !important;
    border: none !important;
    background: transparent !important;
    margin: 0 12px 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ocultamos dibujos por defecto */
div:where(.swal2-icon) .swal2-icon-content,
div:where(.swal2-icon) [class^="swal2-"] {
    display: none !important;
}

/* Inyectamos iconos FontAwesome */
div:where(.swal2-icon)::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
}

/* Colores e Iconos específicos */
div:where(.swal2-icon).swal2-error::before {
    content: "\f057"; /* fa-circle-xmark */
    color: #e6462b; /* Rojo */
}
div:where(.swal2-icon).swal2-success::before {
    content: "\f058"; /* fa-circle-check */
    color: #43c04d; /* Verde */
}
div:where(.swal2-icon).swal2-warning::before {
    content: "\f06a"; /* fa-circle-exclamation */
    color: #ff7428; /* Naranja */
}

/* 4. ✅ BARRA DE PROGRESO NARANJA SÓLIDA */
div:where(.swal2-timer-progress-bar) {
    background: #ff7428 !important; /* Tu color exacto */
    height: 4px !important; /* Un poco más gruesa para que se vea bien */
    bottom: 0 !important;
    opacity: 1 !important; /* Totalmente visible */
}

/* =========================================
   AJUSTE PARA CELULARES (MÁS PEQUEÑO)
   ========================================= */

@media (max-width: 480px) {
    div:where(.swal2-container).swal2-top-end > .swal2-popup,
    div:where(.swal2-container) div:where(.swal2-toast) {
        max-width: 90% !important; /* Deja un margen a los lados */
        padding: 8px 12px !important; /* Más compacto */
        margin: 10px auto !important; /* Centrado arriba en móvil */
        right: 0 !important;
        left: 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

    div:where(.swal2-container) .swal2-title {
        font-size: 0.85rem !important; /* Letra un poco más chica */
    }

    div:where(.swal2-icon) {
        width: 18px !important;
        height: 18px !important;
        margin-right: 10px !important;
    }

    div:where(.swal2-icon-content) {
        font-size: 1rem !important;
    }
}

/* =========================================
   AJUSTES ESPECÍFICOS PARA REGISTRO
   ========================================= */

/* 1. Hacemos el formulario MUCHO más ancho para que quepan las 2 columnas */
.auth-register-width {
    max-width: 800px !important; /* Aumentamos de 550px a 800px */
}

/* 2. (Opcional) Si quieres "quitar el contenedor de atrás" visualmente */
/* Esto hará que parezca que el formulario está directo en el fondo, sin tarjeta */
/* Si prefieres mantener la tarjeta blanca, NO copies las líneas de abajo */
.flat-style {
    box-shadow: none !important; /* Quita la sombra */
    background: transparent !important; /* Quita el fondo blanco */
    border: none !important; /* Quita bordes si los hay */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ajuste para que los inputs se vean bien si el fondo es transparente */
.flat-style .form-control {
    background: #fff; /* Los inputs se quedan blancos */
}

.auth-form-light {
    max-width: 850px !important; /* ANCHO GRANDE OBLIGATORIO */
    width: 100% !important;
    /* background: transparent !important;  */
    box-shadow: none !important; /* QUITA LA SOMBRA */
    border: none !important;
}

/* Aseguramos que los inputs se mantengan blancos y legibles */
.form-control,
.form-control:focus {
    background-color: #ffffff !important;
}

/* Ajuste para que el título se vea bien sin la caja */
.brand-logo img {
    margin-bottom: 10px;
}

/* =========================================
   CORRECCIÓN DE ALTURA EN DROPDOWNS (SELECT)
   ========================================= */

.auth-form-light select.form-control {
    /* 1. ALTURA: Forzamos una altura fija suficiente para que quepa el texto */
    height: 50px !important;
    line-height: 50px !important; /* Centra el texto verticalmente */

    /* 2. RELLENO: Quitamos el espacio extra del "ojo" que tienen los password */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 15px !important;
    padding-right: 30px !important; /* Espacio para la flechita nativa */

    /* 3. COLOR: Aseguramos contraste */
    color: #333333 !important;
    background-color: #ffffff !important;

    /* 4. IMPORTANTE: Esto arregla cómo el navegador pinta la caja */
    -webkit-appearance: menulist !important;
    appearance: menulist !important;
    display: flex;
    align-items: center;
}

/* =========================================
   ESTILO MÓVIL (TIPO APP)
   ========================================= */

@media (max-width: 480px) {
    /* 1. Quitamos el fondo gris del body en móvil */
    body,
    .login-container {
        background: #ffffff !important;
        align-items: flex-start !important; /* Para que el registro empiece arriba */
        padding-top: 0 !important;
    }

    /* 2. Transformamos la tarjeta en Pantalla Completa */
    .auth-form-light,
    .auth-form-light.register-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 100vh !important; /* Ocupa todo el alto */

        margin: 0 !important;
        border-radius: 0 !important; /* Quitamos bordes redondeados */
        box-shadow: none !important; /* Quitamos la sombra */
        border: none !important;

        padding: 20px 20px 40px 20px !important; /* Espacio para respirar */

        /* Centrado vertical solo si es Login (corto), normal si es Registro (largo) */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Excepción para el registro: que no se centre verticalmente, que empiece arriba */
    .auth-form-light.register-card {
        justify-content: flex-start !important;
        padding-top: 40px !important;
    }

    /* 3. Logo más pequeño para ganar espacio */
    .brand-logo img {
        height: 70px !important; /* Reducimos de 100px a 70px */
        margin-bottom: 10px;
    }

    /* 4. Títulos más pequeños */
    .auth-form-light h4 {
        font-size: 1.5rem !important;
    }
    .auth-form-light h6 {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
    }

    /* 5. Inputs un poco más compactos */
    .form-group {
        margin-bottom: 15px !important;
    }
    .form-control {
        font-size: 16px !important;
    } /* Evita zoom en iPhone */
}
