/* ============================================
   auth-shared.css
   Shared styles for login.html and signup.html.
   Both pages import landing.css (for variables)
   and this file (for shared auth components).
============================================= */

.auth-error-banner {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--d-radius-sm);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.auth-error-banner.visible {
  display: flex;
}
