.auth-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--page-pad);
    gap: var(--sp-6);
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: var(--sp-6);
}

.auth-header__brand {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
}

.auth-header__title {
    font-size: var(--text-2xl);
    color: var(--clr-primary);
    margin-bottom: var(--sp-2);
}

.auth-header__subtitle {
    font-size: var(--text-sm);
    color: var(--clr-text-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.auth-form .btn-full {
    margin-top: var(--sp-2);
}

.auth-footer {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--clr-text-soft);
}

.auth-error {
    margin-bottom: var(--sp-4);
}
