/* --- Auth Pages --- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 88px 24px 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.auth-card.auth-card-wide {
    max-width: 620px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}
.auth-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.025em;
}
.auth-logo p {
    margin-top: 8px;
    font-size: 0.875rem;
}

.auth-card h2 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.auth-card .auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.auth-footer a {
    font-weight: 500;
}

.auth-success-message {
    text-align: center;
    padding: 24px 0;
}
.auth-success-message .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.turnstile-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

/* --- Divider ("or") --- */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.auth-divider span {
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Google OAuth button --- */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #374151;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.15s;
    text-decoration: none;
}
.btn-google:hover {
    background: #F9FAFB;
    box-shadow: var(--shadow-sm);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .auth-card {
        padding: 28px 20px;
    }
}
@media (max-width: 380px) {
    .auth-card {
        padding: 24px 14px;
    }
}
