:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #18211f;
  background: #f7f6f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status {
  width: min(100%, 560px);
  padding: 32px;
  border: 1px solid #d8d5ca;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgb(24 33 31 / 8%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #37605b;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.copy {
  margin: 16px 0 28px;
  color: #4d5b57;
  font-size: 17px;
  line-height: 1.55;
}

.check {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: #edf4f2;
}

.dot {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 999px;
  background: #a78b36;
}

.dot.ok {
  background: #22834f;
}

.dot.error {
  background: #ba3b34;
}

.label {
  margin: 0;
  font-weight: 700;
}

.detail {
  margin: 4px 0 0;
  color: #5e6865;
  font-size: 14px;
}

@media (max-width: 520px) {
  .status {
    padding: 24px;
  }

  h1 {
    font-size: 27px;
  }
}

