* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f6f7f9;
  color: #14171f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  padding: 20px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.panel {
  width: min(100%, 420px);
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 8px;
  padding: 20px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #697386;
  font-size: 13px;
}

h1 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.25;
}

.mock {
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #fff3cd;
  color: #7a4d00;
  font-size: 13px;
}

.hidden {
  display: none;
}

.status-list {
  margin: 0;
}

.status-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #edf0f4;
}

dt {
  color: #697386;
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

button {
  width: 100%;
  margin-top: 18px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: #07c160;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

button:disabled {
  background: #aeb7c2;
}

.result {
  margin: 14px 0 0;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.5;
}

