/* ============================================================
   Auth Pages — Login, Register, Forgot/Reset Password
   ============================================================ */

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px 36px;
}

.auth-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-card .auth-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Google button */
.btn-google {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    width: 100%;
    padding: 12px 28px;
}

.btn-google:hover {
    background: #fff;
    color: #333;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

/* Footer links */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 500;
}

/* Referral badge */
.referral-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 209, 102, 0.12);
    border: 1px solid rgba(255, 209, 102, 0.25);
    border-radius: var(--radius-xs);
    color: var(--secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    width: 100%;
}

/* Forgot password link */
.forgot-link {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    margin-top: -0.75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 28px 20px;
    }
}
