/* Matches the real buzzoid account/checkout portal: flat #F6F8FA page,
   no card shell around the form, monospace live-delivery feed columns
   either side of the form on desktop, warm orange accent (#C14411 /
   gradient #FF5D1A -> #DE5015). Colors/type extracted by inspecting
   checkout.buzzoid.com's computed styles (its own CSS uses obfuscated
   CSS-module class names, so literal class cloning isn't possible). */

.auth-page {
  background: #F6F8FA;
  min-height: 70vh;
  padding: 28px 20px 56px;
}

.auth-topbar {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-crumb {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #A3ACBA;
  text-transform: uppercase;
}

.auth-crumb strong {
  color: #50617A;
}

.auth-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #50617A;
  text-transform: lowercase;
}

.auth-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: authDotPulse 1.8s ease-out infinite;
}

@keyframes authDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.auth-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

@media (min-width: 980px) {
  .auth-grid {
    grid-template-columns: minmax(0, 1fr) 420px minmax(0, 1fr);
  }
}

.auth-feed {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

@media (min-width: 980px) {
  .auth-feed {
    display: flex;
  }
}

.auth-feed--right {
  align-items: flex-end;
}

.auth-feed-row {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 11px;
  color: #3C4F69;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  animation: authFeedIn 0.4s ease forwards;
}

@keyframes authFeedIn {
  to { opacity: 1; transform: translateY(0); }
}

.auth-feed-row.leaving {
  animation: authFeedOut 0.35s ease forwards;
}

@keyframes authFeedOut {
  to { opacity: 0; transform: translateY(6px); }
}

.auth-feed-time {
  color: #A3ACBA;
}

.auth-feed-amount {
  color: #C14411;
  font-weight: 600;
}

.auth-feed-user {
  color: #3C4F69;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #A3ACBA;
  margin-bottom: 8px;
}

.auth-heading {
  font-size: 26px;
  font-weight: 700;
  color: #30313D;
  margin-bottom: 8px;
  line-height: 1.25;
}

.auth-subtext {
  font-size: 13.5px;
  color: #3C4F69;
  margin-bottom: 24px;
  line-height: 1.5;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-field-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.auth-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #50617A;
}

.auth-forgot-link {
  font-size: 12px;
  font-weight: 500;
  color: #C14411;
  text-decoration: none;
}

.auth-forgot-link:hover {
  text-decoration: underline;
}

.auth-field input {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: none;
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  color: #30313D;
  outline: none;
  box-shadow: 0 0 0 1px #D4DEE9;
  transition: box-shadow 0.15s ease;
}

.auth-field input::placeholder {
  color: #A3ACBA;
}

.auth-field input:focus {
  box-shadow: 0 0 0 1.5px #DE5015, 0 0 0 4px rgba(222, 80, 21, 0.12);
}

.auth-requirements {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-requirements li {
  font-size: 12.5px;
  color: #A3ACBA;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.auth-requirements li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #A3ACBA;
  flex-shrink: 0;
  transition: background 0.15s ease;
}

.auth-requirements li.met {
  color: #16A34A;
}

.auth-requirements li.met::before {
  background: #16A34A;
}

.auth-submit {
  display: block;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(#FF5D1A 0%, #DE5015 100%);
  box-shadow: 0 0 0 1px #DE5015, 0 1px 2px rgba(222, 80, 21, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px #DE5015, 0 6px 16px rgba(222, 80, 21, 0.3);
}

.auth-submit:active {
  transform: translateY(0) scale(0.98);
}

.auth-links {
  text-align: center;
  font-size: 13px;
  color: #3C4F69;
  margin-top: 20px;
}

.auth-links a {
  color: #C14411;
  font-weight: 500;
  text-decoration: none;
}

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

.auth-footer-note {
  text-align: center;
  font-size: 11px;
  color: #A3ACBA;
  margin-top: 36px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", Menlo, Consolas, monospace;
}

.auth-alert {
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
}

.auth-alert--error {
  background: #FEF2F2;
  color: #DC2626;
}

.auth-alert--success {
  background: #F0FDF4;
  color: #16A34A;
}
