.pe-auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: #eef0f3;
}
body.pe-auth-pending .pe-auth-overlay { display: flex; }
body.pe-auth-pending main { visibility: hidden; }
.pe-auth-card {
  width: min(360px, 90vw);
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 24, 34, 0.12);
  text-align: center;
}
.pe-auth-mark { width: 56px; height: 56px; margin: 0 auto 12px; display: block; }
.pe-auth-card h1 { margin: 0 0 8px; font-size: 22px; }
.pe-auth-card p { margin: 0 0 16px; color: #565f6f; font-size: 14px; }
#peAuthForm { display: flex; flex-direction: column; gap: 10px; }
#peAuthEmail {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d8e0;
  font-size: 14px;
}
#peAuthSubmit {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: #172033;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
#peAuthSubmit:disabled { opacity: 0.6; cursor: default; }
.pe-auth-error { color: #b3261e; font-size: 13px; margin-top: 10px; }
