/* ============================================================================
   KIBO v2 — auth pages (login/register/beta)
   Extracted from app.css (monolith split). Token-based, see _tokens.css.
   ============================================================================ */

/* ── Auth page ───────────────────────────────────────────────────────────── */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-md);
}

.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo-img { height: 56px; width: auto; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 1.25rem 0;
    color: var(--text-muted);
    font-size: .8rem;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 1.5px solid var(--line);
    color: var(--text-primary);
    border-radius: 8px;
    padding: .55rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.btn-google:hover {
    background: var(--bg-surface-2);
    border-color: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
}

