/* Devise auth pages (app/views/layouts/auth.html.erb). Uses the .centered body
   archetype + .nano gradient + .btn-accent CTA from application.css; only the
   auth card widgets are here. Form controls use Bootstrap's light defaults. */
.auth-card {
  width: 100%;
  max-width: 26rem;
  background: var(--nv-bg);
  border: 1px solid var(--nv-border);
  border-radius: 1rem;
  padding: 2.25rem;
  box-shadow: 0 12px 40px rgba(var(--bs-black-rgb), 0.08);
  animation: rise 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.auth-signet {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(var(--nv-brand-1-rgb), 0.25));
}

.auth-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.auth-subtitle {
  text-align: center;
  color: var(--nv-muted);
  margin: 0.25rem 0 1.75rem;
}

.auth-links {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.auth-links a {
  color: var(--nv-accent);
  text-decoration: none;
}

.auth-links a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .auth-card { animation: none; }
}
