:root {
  color-scheme: dark;
  font-family: Inter, system-ui, sans-serif;
  color: #f7f8f8;
  background: #08090a;
  font-feature-settings: "cv01", "ss03";
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 5%;
  border-bottom: 1px solid #ffffff14;
  background: #0f1011;
}
header span {
  font-size: 11px;
  color: #8a8f98;
  letter-spacing: 2px;
}
header button {
  margin-left: auto;
}
main {
  max-width: 1280px;
  margin: auto;
  padding: 36px 32px;
}
h1 {
  font-size: 36px;
  font-weight: 510;
  letter-spacing: -1px;
  margin: 8px 0;
}
h2 {
  font-size: 18px;
  font-weight: 510;
  margin: 0 0 20px;
}
h3 {
  font-size: 14px;
  font-weight: 510;
  margin-top: 32px;
}
.eyebrow {
  font:
    11px ui-monospace,
    monospace;
  letter-spacing: 2px;
  color: #8a8f98;
}
.muted {
  color: #a4a9b2;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}
section {
  background: #0f1011;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
}
.grid section {
  margin: 0 0 20px;
  min-width: 0;
}
label {
  display: block;
  color: #d0d6e0;
  font-size: 12px;
}
input,
textarea {
  display: block;
  width: 100%;
  background: #191a1b;
  border: 1px solid #ffffff24;
  border-radius: 6px;
  padding: 10px 12px;
  color: #f7f8f8;
  font: 14px system-ui;
  margin: 6px 0 12px;
}
textarea {
  resize: vertical;
}
button {
  border: 1px solid #ffffff24;
  border-radius: 6px;
  background: #ffffff08;
  color: #f7f8f8;
  padding: 9px 14px;
  font: 12px system-ui;
  cursor: pointer;
  margin: 4px 4px 4px 0;
}
button:hover {
  background: #ffffff16;
}
.primary {
  background: #5e6ad2;
}
.primary:hover {
  background: #7170ff;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid #828fff;
  outline-offset: 2px;
}
.auth {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.auth label {
  width: 100%;
}
.auth input {
  max-width: 370px;
  margin: 0;
}
.auth span {
  font-size: 12px;
  color: #a4a9b2;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
}
.check input {
  width: auto;
  margin: 0;
}
.badge {
  color: #a9b3ff;
  font:
    12px ui-monospace,
    monospace;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    12px/1.6 ui-monospace,
    monospace;
  background: #08090a;
  padding: 16px;
  border-radius: 6px;
  color: #d0d6e0;
  max-height: 330px;
  overflow: auto;
}
summary {
  font-size: 12px;
  cursor: pointer;
}
#status {
  font-weight: 510;
  color: #b5bdff;
}
#reason {
  font-size: 12px;
  color: #a4a9b2;
}
@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
  main {
    padding: 24px 16px;
  }
  h1 {
    font-size: 28px;
  }
  header span {
    display: none;
  }
  .fields {
    grid-template-columns: 1fr;
  }
}
