/* Auth + form shell (from mockup buyer-flow-v2) — no global nav/body reset; use inside marketing-layout */
.user-auth-scope {
  --cream: #f5f1eb;
  --warm-white: #faf8f5;
  --stone: #c8bfb0;
  --sage: #7a8c7e;
  --sage-deep: #4e6352;
  --charcoal: #2a2a28;
  --ink: #1a1a18;
  --gold: #a8915a;
  --mist: #e8e2d9;
}

.user-auth-scope .step-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.user-auth-scope .pg-eyebrow {
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.user-auth-scope .pg-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--sage);
}

.user-auth-scope .pg-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.user-auth-scope .pg-sub {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.7;
  color: #5a5a56;
  margin-bottom: 1.4rem;
  max-width: 580px;
}

.user-auth-scope .card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 2rem 2.4rem;
}

.user-auth-scope .field {
  margin-bottom: 1.1rem;
}

.user-auth-scope .field-lbl {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.user-auth-scope .req {
  color: var(--gold);
  margin-left: 2px;
}

.user-auth-scope .fi,
.user-auth-scope .fs {
  width: 100%;
  padding: 10px 13px;
  font-size: 0.92rem;
  font-weight: 400;
  border: 1.5px solid var(--stone);
  background: white;
  color: var(--charcoal);
  font-family: "DM Sans", sans-serif;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.user-auth-scope .fi:focus,
.user-auth-scope .fs:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(78, 99, 82, 0.1);
}

.user-auth-scope .seller-notice {
  background: rgba(78, 99, 82, 0.05);
  border: 1px solid rgba(78, 99, 82, 0.18);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--sage-deep);
  line-height: 1.5;
}

.user-auth-scope .seller-notice a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.user-auth-scope .auth-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.user-auth-scope .btn-auth-social {
  flex: 1;
  min-width: 140px;
  padding: 0.72rem 1rem;
  font-size: 0.84rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.user-auth-scope .btn-auth-social.fb {
  background: #1877f2;
  color: #fff;
  border: none;
}

.user-auth-scope .btn-auth-social.fb:hover {
  filter: brightness(0.95);
  color: #fff;
}

.user-auth-scope .btn-auth-social.google {
  border: 1.5px solid var(--stone);
  background: white;
  color: var(--charcoal);
}

.user-auth-scope .btn-auth-social.google:hover {
  border-color: var(--sage);
}

.user-auth-scope .divider-or {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.1rem 0;
}

.user-auth-scope .divider-or::before,
.user-auth-scope .divider-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--mist);
}

.user-auth-scope .divider-or span {
  font-size: 0.72rem;
  color: var(--stone);
}

.user-auth-scope .forgot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.user-auth-scope .btn-forgot {
  font-size: 0.75rem;
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.user-auth-scope .signup-link {
  font-size: 0.78rem;
  color: var(--sage);
}

.user-auth-scope .signup-link a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.user-auth-scope .btn-full {
  width: 100%;
  padding: 0.85rem;
  background: var(--sage-deep);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
  letter-spacing: 0.04em;
}

.user-auth-scope .btn-full:hover {
  background: var(--sage);
}

.user-auth-scope .field-error {
  font-size: 0.8rem;
  color: #a94442;
  margin-top: 0.35rem;
}

.user-auth-scope .alert {
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.user-auth-scope .alert-success {
  background: rgba(78, 99, 82, 0.08);
  border: 1px solid rgba(78, 99, 82, 0.22);
  color: var(--sage-deep);
}

.user-auth-scope .alert-danger {
  background: #fdf2f1;
  border: 1px solid #e8d0ce;
  color: #8b2e2e;
}

.user-auth-scope .alert-info {
  background: rgba(78, 99, 82, 0.06);
  border: 1px solid rgba(78, 99, 82, 0.16);
  color: var(--sage-deep);
}

.user-auth-scope .g-recaptcha {
  margin-top: 0.25rem;
}
