/* Auth form inputs + status rows. Used inside the landing card
 * (`crates/client/styles/landing.css`) — no full-screen overlay today
 * since the game only mounts post-auth. Buttons use the shared `.btn`
 * classes from components.css. */

.auth-input {
  background: var(--surface-input);
  border: 1px solid #444;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 8px 10px;
  font: inherit;
  font-size: var(--text-md);
}

.auth-input:focus {
  outline: 1px solid var(--color-accent);
}

.auth-error {
  color: var(--color-error);
  font-size: var(--text-sm);
  word-break: break-word;
}

.auth-info {
  color: var(--color-info);
  font-size: var(--text-sm);
  word-break: break-word;
}

/* -------------------------------------------------------------------
 * Email-verification nag bar — fixed to top of viewport, visible only
 * while the user is signed in but unverified. Button uses
 * `.btn .btn--warning`; bar-level colors + positioning are here.
 * ------------------------------------------------------------------- */

.verification-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: var(--color-warning-bg);
  border-bottom: 1px solid var(--color-warning-border);
  color: var(--color-warning-fg);
  font-size: var(--text-sm);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.verification-banner-message {
  flex: 0 1 auto;
}

.verification-banner-error {
  color: var(--color-error);
  flex: 0 1 auto;
}
