/* ── Auth page styles ───────────────────────────────────────────── */

.auth-bg {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
}

.auth-card {
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Input focus ring colour */
input:focus, textarea:focus, select:focus {
  outline: none;
}
