/* Vendedor24h — Pantallas de acceso */

.auth {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
}
@media (max-width: 880px) { .auth { grid-template-columns: 1fr; } }

/* Panel izquierdo — argumento de venta */
.auth__aside {
    background: linear-gradient(160deg, #0d1f19 0%, #0b1512 55%, #0a2019 100%);
    color: #fff;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
@media (max-width: 880px) { .auth__aside { display: none; } }
.auth__aside::before {
    content: "";
    position: absolute; width: 480px; height: 480px; right: -180px; top: -120px;
    background: radial-gradient(circle, rgba(7, 168, 102, .35), transparent 68%);
    filter: blur(10px);
}
.auth__aside::after {
    content: "";
    position: absolute; width: 360px; height: 360px; left: -120px; bottom: -140px;
    background: radial-gradient(circle, rgba(112, 89, 243, .28), transparent 70%);
}
.auth__brand { display: flex; align-items: center; gap: 11px; position: relative; z-index: 1; color: #fff; }
.auth__logo { display: flex; }
.auth__logo svg { display: block; }
.auth__brand-word { font-size: 17px; }
.auth__brand b, .auth__brand-word b { font-size: inherit; font-weight: 700; }
.auth__pitch { position: relative; z-index: 1; }
.auth__pitch h1 { font-size: 30px; font-weight: 700; letter-spacing: -.025em; line-height: 1.18; }
.auth__pitch h1 span { color: var(--brand-300); }
.auth__pitch p { color: #a9c0b8; font-size: 14.5px; margin-top: 14px; max-width: 400px; line-height: 1.65; }
.auth__points { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.auth__point { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: #cfe0da; }
.auth__point-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: var(--brand-300); flex-shrink: 0; }
.auth__point-ic svg { width: 16px; height: 16px; }

/* Panel derecho — formulario */
.auth__main { display: grid; place-items: center; padding: 40px 24px; }
.auth__card { width: 100%; max-width: 384px; }
.auth__card > h2 { font-size: 22px; font-weight: 680; letter-spacing: -.02em; }
.auth__card > .auth__sub { color: var(--text-soft); font-size: 13.5px; margin: 6px 0 26px; }
.auth__mobile-brand { display: none; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--text); }
@media (max-width: 880px) { .auth__mobile-brand { display: flex; } }
.auth__mobile-brand .brand-word { font-size: 16px; }

.auth__foot { text-align: center; font-size: 13px; color: var(--text-soft); margin-top: 22px; }
.auth__foot a { color: var(--brand-600); font-weight: 600; }
.auth__foot a:hover { text-decoration: underline; }

.auth__legal { text-align: center; font-size: 11.5px; color: var(--text-mute); margin-top: 26px; line-height: 1.6; }
.auth__legal a { color: var(--text-soft); text-decoration: underline; }

.field__forgot { float: right; font-size: 12px; color: var(--brand-600); font-weight: 600; }
.field__forgot:hover { text-decoration: underline; }
