:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #26313d;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ffffff;
  color: #26313d;
}

main {
  width: min(100%, 420px);
  text-align: center;
}

.brand {
  margin: 0 0 24px;
  color: #4f78a3;
  font-size: 28px;
  font-weight: 700;
}

.spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 18px;
  border: 3px solid #d9e0e7;
  border-top-color: #4f78a3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.status {
  min-height: 24px;
  margin: 0 0 14px;
  color: #465463;
  font-size: 16px;
  line-height: 1.5;
}

.continue-link {
  color: #2f669c;
  font-size: 14px;
  text-underline-offset: 3px;
}

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

@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
    border-top-color: #d9e0e7;
  }
}

@media (prefers-color-scheme: dark) {
  :root,
  body {
    background: #17191b;
    color: #e4e8ec;
  }

  .brand {
    color: #9fc4ea;
  }

  .spinner {
    border-color: #3c444c;
    border-top-color: #9fc4ea;
  }

  .status {
    color: #c6cdd4;
  }

  .continue-link {
    color: #9fc4ea;
  }
}
