.auth-boot-status {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  background: #f7f8fa;
  color: #102035;
}

body.auth-pending {
  overflow: hidden;
}

body.auth-pending .auth-boot-status {
  display: grid;
}

.auth-boot-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
}

.auth-boot-card img {
  width: 46px;
  height: 46px;
}

.auth-boot-card strong {
  font: 800 0.9rem/1.2 var(--bb-font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-boot-card span {
  color: #667085;
  font: 600 0.82rem/1.5 var(--bb-font-sans);
}

html[data-moderator-theme="dark"] .auth-boot-status {
  background: #050505;
  color: #ffffff;
}

html[data-moderator-theme="dark"] .auth-boot-card span {
  color: #a6a6a6;
}

@media (prefers-reduced-motion: no-preference) {
  .auth-boot-card img {
    animation: auth-mark-pulse 1.1s ease-in-out infinite alternate;
  }
}

@keyframes auth-mark-pulse {
  from { opacity: 0.52; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
