:root {
  font-family: system-ui, sans-serif;
  color: #203b31;
  background: #f4f7f5;
  line-height: 1.5;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.7px;
}
h2 {
  font-size: 21px;
}
a {
  color: #196746;
  text-underline-offset: 3px;
}
label {
  display: block;
  font-size: 15px;
  font-weight: 550;
}
input,
textarea,
select,
button {
  font: inherit;
  border-radius: 7px;
  padding: 11px 13px;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid #acbdb4;
  color: #203b31;
  background: white;
  margin: 6px 0 12px;
  min-width: 0;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
button {
  color: white;
  background: #195a40;
  border: 1px solid #195a40;
  cursor: pointer;
  min-height: 44px;
  font-weight: 600;
}
button:disabled {
  opacity: 0.5;
  cursor: default;
}
button:hover:enabled {
  filter: brightness(0.95);
}
:focus-visible {
  outline: 3px solid #76abcf;
  outline-offset: 3px;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
summary {
  cursor: pointer;
  padding: 10px 0;
}
progress {
  width: 100%;
  height: 9px;
  accent-color: #287653;
}
dt {
  color: #566760;
}
dd {
  margin: 0 0 12px;
}
.auth-card {
  max-width: 430px;
  margin: 10vh auto;
  padding: 32px;
  background: white;
  border: 1px solid #dce4e0;
  border-radius: 12px;
}
.auth-card form {
  display: grid;
  gap: 4px;
}
[role="alert"] {
  color: #922a2c;
}
@media (max-width: 500px) {
  .auth-card {
    margin: 32px 16px;
    padding: 24px;
  }
}
