/* Экран входа: слева витрина, справа форма — пропорции из макета. */

.auth-stage {
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
}

.auth-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
}

@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-hero { display: none; }
}

.auth-hero {
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 36px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-hero-body {
    max-width: 470px;
}

.auth-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-3);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.auth-h1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 12px 0;
    line-height: 1.15;
    text-wrap: pretty;
}

.auth-lede {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    line-height: 1.6;
    margin: 0;
    text-wrap: pretty;
}

.auth-foot {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-3);
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-form {
    width: 100%;
    max-width: 360px;
}

.auth-h2 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}

.auth-sub {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-3);
    margin: 0 0 22px;
    line-height: 1.55;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 14px 0 18px;
}

.auth-form .info-block {
    margin-top: 18px;
}
