:root {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #17302a;
  background: #f4f6f3;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
main {
  width: min(100%, 440px);
  padding: 36px;
  background: #fff;
  border: 1px solid #dde5df;
  border-radius: 20px;
  box-shadow: 0 16px 56px #17302a0a;
}
.wordmark {
  font-weight: 750;
  font-size: 25px;
  letter-spacing: -1px;
  text-decoration: none;
  color: inherit;
}
.wordmark span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #638074;
  margin-left: 6px;
}
h1 {
  font-size: 30px;
  letter-spacing: -0.8px;
  margin: 32px 0 12px;
}
p {
  line-height: 1.55;
  color: #50665e;
}
label {
  display: block;
  font-weight: 650;
  margin: 28px 0 8px;
}
input {
  width: 100%;
  padding: 13px;
  font: inherit;
  border: 1px solid #b9cbc0;
  border-radius: 8px;
}
button,
.button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  background: #195b46;
  color: #fff;
  font: inherit;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.small {
  font-size: 13px;
}
.code {
  font-family: ui-monospace, monospace;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  background: #edf4ef;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 24px;
}
#status {
  font-size: 14px;
  margin-bottom: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #77b89b;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 480px) {
  main {
    padding: 26px;
  }
  body {
    padding: 16px;
  }
}
