:root {
  font-family: system-ui, sans-serif;
  color: #243d38;
  background: #f4f3ec;
}
* {
  box-sizing: border-box;
}
main {
  max-width: 940px;
  margin: auto;
  padding: 48px 24px;
}
header {
  padding: 24px 0 36px;
  border-bottom: 1px solid #ced7cf;
}
small {
  letter-spacing: 3px;
}
h1 {
  font-size: 36px;
  line-height: 1.4;
}
p {
  line-height: 1.8;
  color: #526760;
}
form,
article {
  background: white;
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
}
label {
  display: block;
  margin: 14px 0;
  font-weight: 600;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #bacac2;
  border-radius: 8px;
  font: inherit;
}
textarea {
  min-height: 100px;
}
input[type="checkbox"] {
  display: inline;
  width: auto;
}
button {
  background: #245b4c;
  color: white;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  margin: 6px;
  cursor: pointer;
  font: inherit;
}
button:disabled {
  opacity: 0.5;
}
.row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
#status {
  white-space: pre-wrap;
}
a {
  color: #245b4c;
}
footer {
  margin-top: 32px;
}
