:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #172f31;
  background: #f5f7f5;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dce4df;
  background: #fff;
}
.brand {
  font-size: 22px;
  font-weight: 650;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mark {
  background: #174d45;
  color: white;
  border-radius: 10px;
  padding: 8px;
  font-size: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
a {
  color: #174d45;
}
main {
  max-width: 1120px;
  margin: 65px auto;
  min-height: 65vh;
  padding: 0 24px;
}
h1 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.5px;
  margin: 12px 0 16px;
}
h2 {
  font-size: 21px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #526e65;
  font-weight: 650;
}
.intro {
  color: #5b6f69;
  line-height: 1.6;
  max-width: 620px;
}
.panel {
  background: white;
  padding: 32px;
  border: 1px solid #dae4dd;
  border-radius: 16px;
  margin: 24px 0;
}
.auth {
  max-width: 490px;
  margin: auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 18px;
}
.grid .panel {
  margin: 8px 0;
}
label {
  display: block;
  margin: 19px 0 8px;
  font-size: 14px;
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #afc3b8;
  border-radius: 7px;
  font: inherit;
  background: white;
  color: inherit;
}
input[type="checkbox"] {
  width: auto;
  margin-right: 9px;
}
button,
.button {
  display: inline-block;
  border: 0;
  background: #174d45;
  color: white;
  padding: 12px 19px;
  border-radius: 7px;
  font: inherit;
  font-weight: 550;
  text-decoration: none;
  cursor: pointer;
  margin-top: 18px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.quiet {
  background: #eaf0eb;
  color: #174d45;
  margin: 0;
}
.auth button {
  width: 100%;
}
.provider {
  background: white;
  border: 1px solid #aabfb4;
  color: #174d45;
}
.muted {
  color: #65786f;
  font-size: 14px;
  line-height: 1.6;
}
.message {
  padding: 12px;
  background: #e8f1ea;
  border-radius: 7px;
  margin: 15px 0;
  overflow-wrap: anywhere;
}
.error {
  background: #fff0ec;
  color: #813326;
}
.stat {
  font-size: 30px;
  font-weight: 650;
  margin: 20px 0 4px;
}
.badge {
  background: #e7f2e9;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
}
.empty {
  border: 1px dashed #b9cdc0;
  padding: 42px;
  text-align: center;
  border-radius: 14px;
  margin-top: 28px;
}
code,
pre {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  background: #eef3ef;
  padding: 12px;
  display: block;
}
footer {
  padding: 28px 5vw;
  color: #6b7f74;
  font-size: 13px;
}
fieldset {
  border: 0;
  padding: 0;
}
legend {
  font-weight: 650;
  margin-top: 20px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #dbb952;
  outline-offset: 3px;
}
@media (max-width: 650px) {
  header {
    align-items: flex-start;
  }
  nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 13px;
    max-width: 210px;
  }
  main {
    margin: 35px auto;
  }
  .panel {
    padding: 23px;
  }
}
