﻿:root {
    --brand-black: #070907;
    --brand-black-soft: #111411;
    --brand-gray: #686e66;
    --brand-border: rgba(220, 226, 216, .92);
    --xpeng-green: #96b414;
    --xpeng-green-light: #b6d92d;
    --xpeng-green-dark: #71880c;
    --white: #ffffff;
    --card-width: 400px;
    --page-max-width: 1920px;
    --shadow-card: 0 28px 70px rgba(0, 0, 0, .28), 0 8px 24px rgba(0, 0, 0, .12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

html {
    background: #0b0e0b;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    color: var(--brand-black-soft);
    background: #0b0e0b;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

button,
input {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   CONTENEDOR GENERAL
   La imagen ahora pertenece a toda la pantalla.
========================================================= */

.login-page {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 42%);
    width: min(100%, var(--page-max-width));
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
    background-image: url("../../images/Home/Login/bk_xpengfondo.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .login-page::before {
        display: none;
    }

/* =========================================================
   ÁREA VISUAL IZQUIERDA
   Ya no tiene fondo independiente.
========================================================= */

.login-visual {
    position: relative;
    min-width: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(34px, 3.3vw, 60px) clamp(34px, 4vw, 72px) clamp(34px, 3.3vw, 58px);
    overflow: hidden;
}

.visual-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - clamp(68px, 6.6vw, 118px));
    min-height: calc(100dvh - clamp(68px, 6.6vw, 118px));
}

/* =========================================================
   MARCA XPENG
========================================================= */

.brand {
    display: inline-flex;
    width: fit-content;
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.brand-logo {
    display: block;
    width: clamp(190px, 15vw, 260px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 7px 20px rgba(0, 0, 0, .42));
}

.brand-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 3px;
    color: var(--white);
}

.brand-platform-line {
    width: 40px;
    height: 3px;
    border-radius: 999px;
    background: var(--xpeng-green);
    box-shadow: 0 0 18px rgba(150, 180, 20, .28);
}

.brand-platform strong {
    color: var(--brand-black);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .38);
}

/* =========================================================
   MENSAJE PRINCIPAL
========================================================= */

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(100%, 640px);
    margin-top: auto;
    margin-bottom: clamp(42px, 6vh, 72px);
    color: var(--white);
}

    .hero-copy h2 {
        margin: 0;
        color: var(--white);
        font-size: clamp(42px, 4.7vw, 76px);
        font-weight: 760;
        line-height: .99;
        letter-spacing: -3px;
        text-wrap: balance;
        text-shadow: 0 12px 34px rgba(0, 0, 0, .56);
    }

        .hero-copy h2 span {
            display: block;
            color: var(--xpeng-green-light);
        }

.hero-line {
    width: 76px;
    height: 5px;
    margin: 27px 0 20px;
    border-radius: 999px;
    background: var(--xpeng-green);
    box-shadow: 0 0 18px rgba(150, 180, 20, .28);
}

.hero-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(15px, 1.16vw, 20px);
    line-height: 1.55;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .55);
}

/* =========================================================
   LOGO EIKOS
========================================================= */

.eikos-visual-logo {
    position: absolute;
    left: clamp(34px, 4vw, 72px);
    right: auto;
    bottom: clamp(22px, 2.4vw, 38px);
    z-index: 6;
    width: clamp(160px, 12vw, 240px);
    pointer-events: none;
}

    .eikos-visual-logo img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .55));
    }

/* =========================================================
   ÁREA DERECHA
   Transparente para que la imagen continúe detrás.
========================================================= */

.login-panel {
    position: relative;
    min-width: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px clamp(34px, 4vw, 72px) 76px;
    overflow: visible;
}

    .login-panel::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(100%, 760px);
        z-index: -1;
        pointer-events: none;
        background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, .05) 22%, rgba(255, 255, 255, .12) 100% );
    }

/* =========================================================
   TARJETA DE LOGIN
========================================================= */

.login-box {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--card-width);
    padding: clamp(28px, 2.2vw, 38px) clamp(26px, 2.7vw, 42px) 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .90);
    border-radius: 30px;
    background: linear-gradient( 145deg, rgba(255, 255, 255, .97), rgba(248, 250, 247, .93) );
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
}

    .login-box::before {
        content: "";
        position: absolute;
        top: 0;
        right: 32px;
        left: 32px;
        height: 2px;
        background: linear-gradient( 90deg, transparent, rgba(150, 180, 20, .88), transparent );
    }

    .login-box::after {
        content: "";
        position: absolute;
        right: -80px;
        bottom: -110px;
        width: 240px;
        height: 240px;
        z-index: -1;
        border-radius: 50%;
        pointer-events: none;
        background: rgba(150, 180, 20, .10);
        filter: blur(12px);
    }

/* =========================================================
   LOGO E-OFFICE
========================================================= */

.login-banner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 56px;
    margin: 0 0 20px;
}

    .login-banner img {
        display: block;
        width: auto;
        max-width: 205px;
        max-height: 56px;
        object-fit: contain;
        object-position: left center;
    }

    .login-banner.banner-fallback::before {
        content: "e-office";
        color: #151515;
        font-size: 32px;
        font-weight: 760;
        line-height: 1;
        letter-spacing: -2px;
    }

/* =========================================================
   ENCABEZADO
========================================================= */

.login-header {
    position: relative;
    z-index: 2;
    margin: 4px 0 25px;
}

    .login-header .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 11px;
        color: var(--xpeng-green-dark);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.7px;
        text-transform: uppercase;
    }

        .login-header .eyebrow::before {
            content: "";
            flex: 0 0 auto;
            width: 30px;
            height: 3px;
            border-radius: 999px;
            background: var(--xpeng-green);
        }

    .login-header h2 {
        margin: 0 0 8px;
        color: var(--brand-black-soft);
        font-size: clamp(28px, 2.35vw, 38px);
        font-weight: 760;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .login-header p {
        max-width: 405px;
        margin: 0;
        color: var(--brand-gray);
        font-size: 15px;
        line-height: 1.55;
    }

/* =========================================================
   FORMULARIO
========================================================= */

.login-box form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #242724;
    font-size: 14px;
    font-weight: 700;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60665f;
    font-size: 17px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color .2s ease, transform .2s ease;
}

.form-control {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0 50px 0 52px;
    color: var(--brand-black-soft);
    font-size: 15px;
    background: linear-gradient( 180deg, rgba(248, 250, 247, .98), rgba(238, 243, 236, .97) );
    border: 1px solid #d8ded5;
    border-radius: 14px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(17, 20, 17, .025);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .form-control::placeholder {
        color: #92988f;
    }

    .form-control:hover {
        border-color: #bcc5b9;
    }

    .form-control:focus {
        border-color: rgba(150, 180, 20, .82);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(150, 180, 20, .13), 0 8px 18px rgba(17, 20, 17, .06);
    }

.input-wrapper:focus-within .input-icon {
    color: var(--xpeng-green-dark);
    transform: translateY(-50%) scale(1.04);
}

/* =========================================================
   MOSTRAR CONTRASEÑA
========================================================= */

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #656b64;
    background: transparent;
    border: 0;
    border-radius: 11px;
    outline: none;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color .2s ease, background .2s ease;
}

    .password-toggle:hover,
    .password-toggle:focus-visible {
        color: var(--xpeng-green-dark);
        background: rgba(150, 180, 20, .10);
    }

/* =========================================================
   BOTÓN
========================================================= */

.login-button {
    position: relative;
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 24px;
    overflow: hidden;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient( 135deg, #111411, #050605 );
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(11, 14, 11, .25), 0 0 0 1px rgba(150, 180, 20, .06);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .login-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 58%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, .18), transparent );
        transform: skewX(-20deg);
        transition: left .55s ease;
    }

    .login-button::after {
        content: "";
        position: absolute;
        right: 24px;
        bottom: 0;
        left: 24px;
        height: 2px;
        background: linear-gradient( 90deg, transparent, rgba(150, 180, 20, .82), transparent );
    }

    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(11, 14, 11, .32), 0 0 0 4px rgba(150, 180, 20, .08);
    }

        .login-button:hover::before {
            left: 150%;
        }

    .login-button:focus-visible {
        outline: 3px solid rgba(150, 180, 20, .34);
        outline-offset: 3px;
    }

    .login-button:active {
        transform: translateY(0);
    }

    .login-button:disabled {
        opacity: .72;
        cursor: not-allowed;
        transform: none;
    }

    .login-button i,
    .login-button span {
        position: relative;
        z-index: 2;
    }

/* =========================================================
   MENSAJE DE SEGURIDAD
========================================================= */

.security-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    color: #858b83;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

    .security-message i {
        flex: 0 0 auto;
        color: var(--xpeng-green-dark);
    }

/* =========================================================
   FOOTER
========================================================= */

.login-footer {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 3;
    padding: 0 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .70);
}

/* =========================================================
   LAPTOP: 1024px A 1366px
========================================================= */

@media (max-width: 1366px) {
    .login-page {
        grid-template-columns: minmax(0, 1fr) minmax(395px, 41%);
        background-position: 54% center;
    }

    .login-visual {
        padding: 36px 42px 34px;
    }

    .visual-content {
        min-height: calc(100dvh - 70px);
    }

    .hero-copy {
        max-width: 535px;
        margin-bottom: 54px;
    }

        .hero-copy h2 {
            font-size: clamp(40px, 4.7vw, 54px);
            letter-spacing: -2.4px;
        }

        .hero-copy p {
            max-width: 470px;
            font-size: 15px;
        }

    .eikos-visual-logo {
        left: 42px;
        right: auto;
        bottom: 26px;
        width: 150px;
    }

    .login-panel {
        padding: 30px 34px 64px;
    }

    .login-box {
        max-width: 400px;
        padding: 28px 32px 30px;
        border-radius: 26px;
    }

    .login-header h2 {
        font-size: 30px;
    }

    .form-control {
        height: 54px;
    }

    .login-button {
        min-height: 55px;
    }
}

/* =========================================================
   TABLET HORIZONTAL / VERTICAL
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {
    .login-page {
        grid-template-columns: minmax(0, 1fr) minmax(345px, 46%);
        background-position: 52% center;
    }

    .login-visual {
        min-height: 100dvh;
        padding: 28px 27px;
    }

    .visual-content {
        min-height: calc(100dvh - 56px);
    }

    .brand-logo {
        width: 300px;
    }

    .brand-logo-container {
        gap: 10px;
    }

    .brand-platform-line {
        width: 32px;
    }

    .brand-platform strong {
        font-size: 12px;
    }

    .hero-copy {
        max-width: 360px;
        margin-bottom: 52px;
    }

        .hero-copy h2 {
            font-size: clamp(34px, 5.2vw, 44px);
            line-height: 1;
            letter-spacing: -2px;
        }

    .hero-line {
        width: 60px;
        height: 4px;
        margin: 20px 0 16px;
    }

    .hero-copy p {
        max-width: 330px;
        font-size: 13.5px;
    }

    .eikos-visual-logo {
        left: 27px;
        right: auto;
        bottom: 20px;
        width: 120px;
    }

    .login-panel {
        min-height: 100dvh;
        padding: 26px 20px 56px;
    }

    .login-box {
        max-width: 390px;
        padding: 25px 24px 26px;
        border-radius: 23px;
    }

    .login-banner {
        min-height: 46px;
        margin-bottom: 16px;
    }

        .login-banner img {
            max-width: 168px;
            max-height: 46px;
        }

    .login-header {
        margin-bottom: 19px;
    }

        .login-header .eyebrow {
            margin-bottom: 9px;
            font-size: 10px;
            letter-spacing: 1.3px;
        }

            .login-header .eyebrow::before {
                width: 24px;
            }

        .login-header h2 {
            margin-bottom: 6px;
            font-size: 21px;
        }

        .login-header p {
            font-size: 12.5px;
        }

    .form-group {
        margin-bottom: 14px;
    }

    .form-label {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .form-control {
        height: 49px;
        padding-right: 44px;
        padding-left: 45px;
        font-size: 12.5px;
        border-radius: 12px;
    }

    .input-icon {
        left: 14px;
        font-size: 15px;
    }

    .password-toggle {
        right: 6px;
        width: 35px;
        height: 35px;
    }

    .login-button {
        min-height: 50px;
        margin-top: 18px;
        font-size: 13.5px;
        border-radius: 12px;
    }

    .security-message {
        gap: 7px;
        margin-top: 14px;
        font-size: 9.5px;
    }

    .login-footer {
        padding: 0 12px;
        font-size: 9px;
    }
}

/* =========================================================
   MÓVIL: HASTA 767px
   La fotografía vive solamente en el bloque superior.
========================================================= */

@media (max-width: 767px) {
    html,
    body {
        background: #0b0e0b;
    }

    .login-page {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100dvh;
        overflow: visible;
        background: #0b0e0b;
    }

        .login-page::before {
            display: none;
            content: none;
        }

    .login-visual {
        position: relative;
        flex: 0 0 auto;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 9;
        padding: clamp(16px, 4.5vw, 24px);
        overflow: hidden;
        background-image: url("../../images/Home/Login/bk_xpengfondo.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-color: #0b0e0b;
    }

        .login-visual::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 30%;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(to top, rgba(0, 0, 0, .34), transparent);
        }

    .visual-content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .brand-logo {
        width: clamp(142px, 36vw, 350px);
        filter: none;
    }

    .brand-logo-container {
        gap: 8px;
    }

    .brand-platform {
        gap: 9px;
    }

    .brand-platform-line {
        width: 28px;
        height: 3px;
    }

    .brand-platform strong {
        color: var(--brand-black);
        font-size: 10.5px;
        text-shadow: none;
    }

    .hero-copy {
        display: none;
    }

    .eikos-visual-logo {
        left: auto;
        right: 24px;
        bottom: 18px;
        z-index: 3;
        width: clamp(95px, 24vw, 120px);
    }

    .login-panel {
        flex: 1 0 auto;
        min-height: auto;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 16px 24px;
        overflow: visible;
        background: #0a0408;
    }

        .login-panel::before {
            display: none;
            content: none;
        }

    .login-box {
        width: 100%;
        max-width: 520px;
        margin: 10px auto 0;
        padding: 24px 22px 26px;
        border-radius: 23px;
        background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(247, 249, 246, .97));
        box-shadow: 0 22px 48px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .95);
    }

        .login-box::before {
            right: 22px;
            left: 22px;
        }

    .login-banner {
        min-height: 41px;
        margin-bottom: 14px;
    }

        .login-banner img {
            max-width: 148px;
            max-height: 41px;
        }

    .login-header {
        margin: 0 0 20px;
    }

        .login-header .eyebrow {
            margin-bottom: 8px;
            font-size: 9.8px;
            letter-spacing: 1.35px;
        }

            .login-header .eyebrow::before {
                width: 23px;
            }

        .login-header h2 {
            margin-bottom: 6px;
            font-size: clamp(24px, 6.4vw, 29px);
            letter-spacing: -.8px;
        }

        .login-header p {
            max-width: 410px;
            font-size: 12.5px;
        }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        margin-bottom: 6px;
        font-size: 12.5px;
    }

    .form-control {
        height: 51px;
        padding-right: 46px;
        padding-left: 47px;
        font-size: 13.5px;
        border-radius: 13px;
    }

    .input-icon {
        left: 15px;
        font-size: 15px;
    }

    .password-toggle {
        right: 8px;
        width: 35px;
        height: 35px;
    }

    .login-button {
        min-height: 52px;
        margin-top: 18px;
        border-radius: 13px;
        font-size: 14px;
    }

    .security-message {
        margin-top: 14px;
        font-size: 10px;
    }

    .login-footer {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 0 12px;
        color: rgba(255, 255, 255, .72);
        font-size: 9.7px;
    }
}

/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 430px) {
    .login-visual {
        aspect-ratio: 16 / 9;
        padding: 16px;
        background-position: center center;
        background-size: cover;
    }

    .brand-logo {
        width: 138px;
    }

    .brand-platform strong {
        font-size: 9.8px;
    }

    .eikos-visual-logo {
        left: auto;
        right: 20px;
        bottom: 14px;
        width: 100px;
    }

    .login-panel {
        padding-right: 12px;
        padding-left: 12px;
    }

    .login-box {
        margin-top: 8px;
        padding: 22px 18px 23px;
        border-radius: 21px;
    }

    .login-banner {
        min-height: 38px;
        margin-bottom: 13px;
    }

        .login-banner img {
            max-width: 138px;
            max-height: 38px;
        }

    .login-header {
        margin-bottom: 18px;
    }

        .login-header h2 {
            font-size: 24px;
        }

        .login-header p {
            font-size: 12px;
        }

    .form-label {
        font-size: 12px;
    }

    .form-control {
        height: 50px;
        font-size: 13px;
    }

    .login-button {
        min-height: 51px;
        font-size: 13.8px;
    }

    .security-message {
        align-items: flex-start;
        font-size: 9.7px;
    }
}

/* =========================================================
   MÓVIL MUY PEQUEÑO
========================================================= */

@media (max-width: 360px) {
    .login-visual {
        padding: 14px;
    }

    .brand-logo {
        width: 125px;
    }

    .eikos-visual-logo {
        left: auto;
        right: 16px;
        bottom: 12px;
        width: 88px;
    }

    .login-panel {
        padding-right: 9px;
        padding-left: 9px;
    }

    .login-box {
        margin-top: 8px;
        padding: 20px 15px 21px;
        border-radius: 19px;
    }

    .login-banner img {
        max-width: 130px;
    }

    .login-header h2 {
        font-size: 23px;
    }
}

/* =========================================================
   PANTALLAS DE POCA ALTURA
========================================================= */

@media (max-height: 760px) and (min-width: 1024px) {
    .login-visual {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .visual-content {
        min-height: calc(100dvh - 48px);
    }

    .brand-logo {
        width: 300px;
    }

    .brand-logo-container {
        gap: 9px;
    }

    .hero-copy {
        margin-bottom: 36px;
    }

        .hero-copy h2 {
            font-size: 42px;
        }

    .hero-line {
        margin: 18px 0 14px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .login-panel {
        padding-top: 18px;
        padding-bottom: 42px;
    }

    .login-box {
        padding-top: 23px;
        padding-bottom: 22px;
    }

    .login-banner {
        min-height: 42px;
        margin-bottom: 13px;
    }

        .login-banner img {
            max-width: 165px;
            max-height: 42px;
        }

    .login-header {
        margin-bottom: 16px;
    }

        .login-header .eyebrow {
            margin-bottom: 7px;
        }

        .login-header h2 {
            margin-bottom: 5px;
            font-size: 20px;
        }

        .login-header p {
            font-size: 13px;
        }

    .form-group {
        margin-bottom: 12px;
    }

    .form-control {
        height: 48px;
    }

    .login-button {
        min-height: 49px;
        margin-top: 16px;
    }

    .security-message {
        margin-top: 12px;
    }
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   COMPATIBILIDAD SIN BLUR
========================================================= */

@supports not (
    (backdrop-filter: blur(10px)) or
    (-webkit-backdrop-filter: blur(10px))
) {
    .login-box {
        background: rgba(255, 255, 255, .98);
    }
}
