body {
  margin: 0;
  background: #f7f3ed;
  color: #23302e;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: #35564d;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.panel {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(35, 48, 46, 0.14);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 60px rgba(39, 49, 46, 0.12);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
}

label,
legend {
  display: block;
  margin-bottom: 14px;
  color: #61706d;
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(35, 48, 46, 0.18);
  border-radius: 6px;
  background: #fdfcf9;
  color: #23302e;
  font: inherit;
}

fieldset {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(35, 48, 46, 0.14);
  border-radius: 6px;
  background: #fdfcf9;
}

.choice-grid input,
.checkbox-label input {
  width: auto;
  margin: 0;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #35564d;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.notice {
  padding: 14px;
  border-radius: 8px;
  background: rgba(122, 146, 123, 0.14);
  color: #35564d;
  font-weight: 700;
}

.danger {
  background: rgba(184, 116, 93, 0.14);
  color: #8a3e2d;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid rgba(35, 48, 46, 0.14);
  text-align: left;
  vertical-align: top;
}

.muted {
  color: #61706d;
}

@media (max-width: 700px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
  }

  .table thead {
    display: none;
  }
}
