/* ── 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;
}

/* ── Remember me checkbox ────────────────────────────────────────────── */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  accent-color: #2dd4bf;
  width: 0.85rem;
  height: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
}

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