/* ── Auth / login page styles ──────────────────────────────────────────────
   Extracted verbatim from the inline <style> block in auth/login.html.
   Loaded by that standalone template directly (does not extend base.html).
   ─────────────────────────────────────────────────────────────────────── */

* { font-family: Inter, sans-serif; }

/* ── Dot-grid overlay animation ──────────────────────────────────────── */
@keyframes grid-drift {
  0%   { background-position: 0px 0px; }
  50%  { background-position: 5px 4px; }
  100% { background-position: 0px 0px; }
}

.dot-grid {
  background-image: radial-gradient(circle, rgba(45, 212, 191, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: grid-drift 26s ease-in-out infinite;
}

/* ── Gradient vertical rule ──────────────────────────────────────────── */
.gradient-rule {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #2e3150 22%,
    #2e3150 78%,
    transparent 100%
  );
}
