html,
body,
#root {
  min-height: 100%;
  margin: 0;
}

body {
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.status-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ffffff;
}

.status-panel {
  max-width: 420px;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.status-logo {
  width: min(180px, 70vw);
  max-height: 96px;
  object-fit: contain;
}

.status-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #d7dee8;
  border-top-color: #2f6fed;
  border-radius: 999px;
  animation: status-spin 0.8s linear infinite;
}

.status-panel h1 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.status-panel p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.status-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes status-spin {
  to {
    transform: rotate(360deg);
  }
}
