/**
 * auth.css
 * Shared visual properties for public-facing auth portals (Login, Register, Passwords)
 */

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}
.dark body {
    background-color: #0B0F19;
    color: #f8fafc;
}
.text-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gradient-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}
.glassmorphic-dark {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
