/*
 * Auth / pre-auth layout (WP9; UI-Design-Principles Sec. 12 tone). A centred card
 * for public and pre-auth screens (login, invite accept, verify, reset). Wordmark
 * on top, theme/lang small in the footer.
 *
 * Class schema: gtx-auth, gtx-auth__card, gtx-auth__brand, gtx-auth__title,
 * gtx-auth__footer, gtx-auth__links.
 */

.gtx-auth {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gtx-s5);
    padding: var(--gtx-s5) var(--gtx-s4);
}

.gtx-auth__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--gtx-font-display);
    font-weight: 700;
    font-size: var(--gtx-fs-h1);
    color: var(--gtx-text);
    text-decoration: none;
}

.gtx-auth__card {
    width: 100%;
    max-width: 26rem;
    background: var(--gtx-surface);
    border: 1px solid var(--gtx-line);
    border-radius: var(--gtx-r-m);
    box-shadow: var(--gtx-shadow-card);
    padding: var(--gtx-s5);
}

.gtx-auth__title {
    font-family: var(--gtx-font-display);
    font-size: var(--gtx-fs-h2);
    font-weight: 600;
    margin-bottom: var(--gtx-s4);
}

.gtx-auth__links {
    margin-top: var(--gtx-s4);
    display: flex;
    flex-wrap: wrap;
    gap: var(--gtx-s3);
    font-size: var(--gtx-fs-meta);
}

.gtx-auth__footer {
    display: flex;
    align-items: center;
    gap: var(--gtx-s2);
    color: var(--gtx-text-dim);
    font-size: var(--gtx-fs-meta);
}
