/* Sign-in / password-reset pages: same navy backdrop and soft card as the
   rest of the account. Linked after each page's own inline styles. */
body { background: linear-gradient(115deg, #0f2747 0%, #1a4585 55%, #3b7bd8 100%); }
.login-card { border: none; border-radius: 16px; box-shadow: 0 20px 50px rgba(6, 18, 40, 0.35); }
.login-card h1 { display: flex; align-items: center; gap: 10px; font-size: 16px; letter-spacing: 0.1em; }
.login-card h1::before {
  content: ""; width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(135deg, #6c9bff, #a9c6ff);
  box-shadow: inset 0 0 0 2px rgba(59, 110, 246, 0.25);
}
.login-card .field input { border-radius: 8px; }
#login-submit, .login-card button[type="submit"] { border-radius: 8px; font-weight: 600; }
