/* ===========================
   Auth Pages CSS
   =========================== */
.auth-body {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}
.auth-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.1) 0%, transparent 50%),
                var(--bg);
}
.auth-particles { position: absolute; inset: 0; }

.auth-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.auth-brand { text-align: center; }
.auth-logo { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.auth-logo-paw { font-size: 2.5rem; }
.auth-logo-name { font-size: 1.4rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.auth-logo-sub { font-size: 0.8rem; color: var(--text-muted); }

.auth-card {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.auth-form-header { text-align: center; margin-bottom: 1.75rem; }
.auth-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9rem; }

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

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--text-dim);
    font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-switch { text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.auth-switch-link { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-switch-link:hover { text-decoration: underline; }

.auth-footer { font-size: 0.78rem; color: var(--text-dim); text-align: center; }
.auth-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }

/* Verify icon */
.verify-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.verify-icon.success { background: rgba(16,185,129,0.2); color: var(--success); }
.verify-icon.error { background: rgba(239,68,68,0.2); color: var(--danger); }
.verify-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 480px) {
    .auth-card { padding: 1.5rem; }
    .auth-title { font-size: 1.25rem; }
}

