html.auth-pending body {
  overflow: hidden;
}

html.auth-pending body > *:not(#jsAuthGate) {
  visibility: hidden !important;
}

.js-auth-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 10%, rgba(33, 150, 243, .18), transparent 32%),
    linear-gradient(145deg, #f7fbff, #eef4fb);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
}

.js-auth-card {
  width: min(420px, 100%);
  padding: 34px 30px 30px;
  border: 1px solid #dce7f5;
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 24px 70px rgba(22, 54, 93, .18);
  text-align: center;
}

.js-auth-logo {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 17px;
  color: #fff;
  background: #1677ee;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  box-shadow: 0 10px 25px rgba(22, 119, 238, .28);
}

.js-auth-card h1 {
  margin: 20px 0 8px;
  font-size: 24px;
  color: #172033;
}

.js-auth-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.js-auth-google {
  display: flex;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
}

.js-auth-status {
  min-height: 22px;
  margin-top: 14px !important;
  color: #d92d20 !important;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .js-auth-card { padding: 28px 22px 24px; }
}
