:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f6f9;
  color: #172033;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100dvh;
  background: linear-gradient(180deg, #eef4ff 0%, #f7f8fa 54%, #ffffff 100%);
}

.shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
}

.card {
  width: min(100%, 430px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e3e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(31, 45, 72, 0.09);
  padding: 26px;
}

.brand {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #0b57d0;
  color: white;
  font-size: 24px;
  font-weight: 800;
}

h1 {
  font-size: 27px;
  line-height: 1.15;
  margin: 18px 0 8px;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0 0 20px;
  color: #68738a;
  line-height: 1.45;
}

.notice {
  margin: 0 0 18px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff7dd;
  border: 1px solid #f2df98;
  color: #574915;
  font-size: 14px;
  line-height: 1.45;
}

.statuses {
  margin: 0;
  border-top: 1px solid #edf0f5;
}

.statuses > div {
  padding: 15px 0;
  border-bottom: 1px solid #edf0f5;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: baseline;
}

dt {
  color: #525e74;
  font-size: 14px;
}

dd {
  margin: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 650;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

button {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 50px;
  background: #0b57d0;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button.secondary {
  background: #edf3ff;
  color: #174a9a;
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.message {
  min-height: 20px;
  margin: 14px 0 0;
  color: #56627a;
  font-size: 13px;
  line-height: 1.45;
}
