/* app/assets/stylesheets/auth.css */
/* Branded auth pages (signup/login/verify). Loaded explicitly by
   layouts/auth.html.erb via stylesheet_link_tag "auth"; all selectors are
   namespaced under .auth-*. */

.auth-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7f9;
}

.auth-wrap {
  width: 100%;
  max-width: 420px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.auth-logo-img { height: 40px; }

.auth-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.06);
  box-sizing: border-box;
}

.auth-card .h1 { margin-top: 0; font-size: 1.35rem; }

.auth-actions { margin-top: 16px; }
.auth-actions .btn { width: 100%; }

.auth-alt {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.auth-support { font-size: 0.85rem; text-align: center; }

.auth-code-input {
  letter-spacing: 0.4em;
  text-align: center;
  font-size: 1.3rem;
}
