.auth-safe-status {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10000;
  width: min(430px, calc(100% - 32px));
  transform: translateX(-50%) translateY(16px);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px 48px 14px 16px;
  background: #fff;
  color: #1e293b;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.auth-safe-status.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.auth-safe-status button {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-size: 22px;
}

@media (prefers-color-scheme: dark) {
  .auth-safe-status {
    border-color: #334155;
    background: #0f172a;
    color: #e2e8f0;
  }
}
