:root {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f5f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Content sits in the upper third, deliberately not centred: the OS "Open in App
     Store?" confirmation renders as a sheet over the middle of the screen, and a
     centred card would sit entirely behind it before the page is ever seen. */
  padding: 15vh 24px 24px;
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 340px;
  width: 100%;
  text-align: center;
}

.logo {
  max-width: 160px;
  height: auto;
}

.spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #e2e4e8;
  border-top-color: #d2691e;
  animation: spin 0.8s linear infinite;
}

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

.status {
  margin: 0;
  color: #444;
  font-size: 15px;
}

.button {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #d2691e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}