/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    background: radial-gradient(ellipse at 20% 50%, rgba(123,47,255,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0,212,255,0.1)  0%, transparent 60%),
                #080810;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', system-ui, sans-serif;
}

.auth-container { width: 100%; max-width: 440px; }

.auth-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 36px;
    backdrop-filter: blur(20px);
}

.auth-logo { text-align: center; margin-bottom: 24px; }

.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin: 0 0 6px;
}

.auth-subtitle {
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-size: 0.9rem;
    margin: 0 0 28px;
}

.auth-errors {
    background: rgba(255,68,68,0.1);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.auth-errors p {
    color: #ff8888;
    font-size: 0.85rem;
    margin: 4px 0;
}

.auth-success {
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #00ff88;
    font-size: 0.85rem;
    text-align: center;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 0.8rem;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 400;
}

.form-group input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #00d4ff;
    background: rgba(0,212,255,0.05);
}

.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.password-strength {
    font-size: 0.75rem;
    font-weight: 600;
    height: 16px;
    transition: color 0.2s;
}

.btn-auth {
    padding: 14px;
    background: linear-gradient(135deg, #7b2fff, #00d4ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s;
}

.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,47,255,0.4); }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.btn-stripe {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #635bff, #00d4ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-stripe:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,91,255,0.4); }

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.auth-footer a, .auth-terms a { color: #00d4ff; text-decoration: none; }

.auth-terms {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}
