*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background: #f6f5ed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column {
  padding: 25px;
  width: 50%;
}

.field {
  margin-bottom: 15px;
}

.field fieldset {
  padding: 0;
  border: 0;
}

.field label, .field legend {
  color: #222;
  font-family: "Hando", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.field input {
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  color: #4a404c;
  height: 34px;
  padding: 25px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  width: 100%;
}

button {
  background: #4a404c;
  border-color: rgba(0, 0, 0, 0.05);
  color: #FFF;
  cursor: pointer;
  line-height: 2.4em;
  margin: 0 25px;
  min-height: 2.5em;
  text-transform: uppercase;
  width: 100%;
}

.toggle {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  width: max-content;
  overflow: hidden;
}

.toggle input[type=radio] {
  display: none;
}

.toggle label {
  height: 34px;
  line-height: 34px;
  background: #FFF;
  margin: 0;
  padding: 0 12px;
  text-align: center;
  min-width: 48px;
  cursor: pointer;
}

.toggle label:first-of-type {
  border-right: 1px solid #CCC;
}

.toggle label:has(input[type=radio]:checked) {
  background: #7a9c59;
  border-color: #7a9c59;
  color: #FFF;
}