/* 인증 페이지 — 560px 센터 카드 (tokens.css 변수만 사용) */

.auth-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.auth-title {
  margin: 0 0 var(--sp-5);
  font-size: var(--fs-xl);
  letter-spacing: -.01em;
}

/* 폼 버튼/놀아 버튼 — 동급 배치(둘 다 전체 폭) */
.auth-block-btn {
  width: 100%;
  margin-top: var(--sp-2);
}

.auth-nola-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--brand-gold);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 800;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
  color: var(--text-faint);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-hint {
  color: var(--text-faint);
  font-size: var(--fs-xs);
}

.auth-alt {
  margin: var(--sp-5) 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
.auth-alt a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
}
.auth-alt a:hover { text-decoration: underline; }

/* verify_sent / verified 안내 카드 */
.auth-center { text-align: center; }
.auth-emblem {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--surface-sunken);
  color: var(--text-muted);
  font-size: var(--fs-lg);
}
.auth-emblem-ok { background: var(--brand-gold-soft); color: var(--ok); }
.auth-emblem-err { background: var(--brand-red-soft); color: var(--err); }
