/* Dark Ambient-Glow Split Login Page CSS */
:root {
  --primary: #2563EB;
  --primary-light: #60A5FA;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 8%, rgba(34,197,94,0.22) 0%, transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(251,191,36,0.16) 0%, transparent 38%),
    radial-gradient(circle at 15% 92%, rgba(168,85,247,0.20) 0%, transparent 42%),
    radial-gradient(circle at 90% 78%, rgba(37,99,235,0.18) 0%, transparent 40%),
    linear-gradient(180deg, #0B1220 0%, #0F172A 55%, #0B1220 100%);
  color: #D3DCEA;
  overflow-x: hidden;
}

/* Utilities */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-muted { color: #94A3B8; }
.small { font-size: 0.875rem; }
.link { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
.link:hover { color: #FFFFFF; }

/* The rest of the login styles are in the login.ejs inline style block */
