    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Tus variables originales */
    --accent-blue: #4477ce;
    --input-gray: #f9fbff;
    --border-color: #e2e8f0;
    
    /* Imagen de fondo */
    --bg-image: url('img-web/img-2.jpg');

    /* Tu degradado radial favorito convertido a RGBA (85% de opacidad) */
    /* Usamos los colores #3d5a73 y #1e2a38 con transparencia */
    --bg-gradient-overlay: radial-gradient(
        circle at center, 
        rgba(61, 90, 115, 0.85) 0%, 
        rgba(30, 42, 56, 0.95) 100%
    );
}

body {
    /* Aplicamos primero el degradado y luego la imagen */
    background-image: var(--bg-gradient-overlay), var(--bg-image);
    
    /* Ajustes para que la imagen cubra todo y no se repita */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    /* Estilos de estructura que ya tenías */
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
    .main-container {
        display: flex;
        width: 100%;
        max-width: 950px;
        gap: 20px;
        align-items: stretch;
    }

    .glass-card {
        background: white;
        border-radius: 28px;
        padding: 50px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        flex: 1;
    }

    /* --- BLOQUE IZQUIERDO (OSCURO) --- */
    .left-card {
        background: #1a3044; /* Azul profundo mate */
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    .dots-decorator {
        position: absolute;
        top: 30px;
        left: 30px;
        display: flex;
        gap: 8px;
    }

    .dot { width: 8px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 50%; }
    .dot.active { background: rgba(255,255,255,0.5); }

    .left-card h2 {
        font-weight: 700;
        font-size: 2.1rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .left-card p {
        color: #a0aec0;
        line-height: 1.6;
        font-size: 1rem;
    }

    .monitor-icon {
        margin-top: 50px;
        text-align: center;
        font-size: 100px;
        color: white;
        transition: transform 0.3s ease;
    }

    /* --- SLIDER DE SLOGANS --- */
    .slogan-container {
        position: relative;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .slogan-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.8s ease-in-out;
        transform: translateX(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .slogan-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .dot { 
        width: 8px; 
        height: 8px; 
        background: rgba(255,255,255,0.2); 
        border-radius: 50%; 
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active { 
        background: rgba(255,255,255,0.8); 
        width: 24px;
        border-radius: 10px;
    }

    /* --- BLOQUE DERECHO (ESTILO IMAGEN) --- */
    .right-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .shield-icon {
        width: 50px;
        height: 50px;
        background: #3b66ad;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .right-card h1 {
        font-size: 1.7rem;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 35px;
        text-align: center;
        width: 100%;
    }

    /* Estilo de los inputs idénticos a la imagen */
    .form-group {
        width: 100%;
        max-width: 320px;
        position: relative;
        margin-bottom: 18px;
    }

/* Estilo del contenedor del input (la caja blanca con borde) */
.input-wrapper {
    display: flex;
    align-items: center;
    background: white; /* El contenedor siempre es blanco */
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 15px; /* Ajuste de padding lateral */
    transition: all 0.3s ease;
    height: 50px; /* Altura fija para consistencia */
    overflow: hidden;
}

/* Iconos de la izquierda (Usuario/Candado) */
.input-wrapper i.bi-person,
.input-wrapper i.bi-envelope, 
.input-wrapper i.bi-lock {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-right: 10px;
    background: transparent; /* Aseguramos que no tenga fondo */
}

/* El input propiamente dicho (donde va el color azul claro) */
.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #2d3748;
    /* Este es el fondo azul claro que se ve en tu imagen */
    background-color: #ebf4ff; 
    border-radius: 6px; /* Bordes suaves para el bloque de texto */
}

/* Estilo para el botón del Ojo */
.btn-view {
    background: transparent;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.btn-view:hover {
    color: #4a76c0;
}

/* Efecto Focus: solo cambia el borde del contenedor */
.input-wrapper:focus-within {
    border-color: #4a76c0;
    box-shadow: 0 0 0 3px rgba(74, 118, 192, 0.1);
}

    .input-wrapper input::placeholder {
        color: #071f38;
    }

    /* Botón Ingresar */
    .btn-submit {
        width: 100%;
        max-width: 320px;
        background: #4a76c0; /* Azul exacto */
        color: white;
        border: none;
        padding: 14px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(74, 118, 192, 0.4);
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background: #3b66ad;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(74, 118, 192, 0.5);
    }

    .forgot-link {
        margin-top: 25px;
        font-size: 0.85rem;
        color: #4a76c0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .forgot-link:hover {
        color: #2c5282;
        text-decoration: underline;
    }

    /* Ojo de ver contraseña */
    .btn-view {
        background: none;
        border: none;
        color: #a0aec0;
        cursor: pointer;
        padding: 0;
    }

    @media (max-width: 850px) {
        .left-card { display: none; }
        .main-container { max-width: 420px; }
    }
    .footer-text {
        text-align: center;
        margin-top: 40px;
        font-size: 0.8rem;
        color: #adb5bd;
    }