body main form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body main form .twoColumnsInForm {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body main form label {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  gap: 10px;
}
body main form label input, body main form label textarea {
  background-color: #fcfcfa;
  border: none;
  border-bottom: 1px solid #3c3c3b;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  padding: 5px;
  resize: none;
}
body main form label input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
}
body main form label .inputWithSmallText {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main form label .inputWithSmallText small {
  font-size: 0.875rem;
  opacity: 0.75;
}
body main form label small {
  font-size: 0.875rem;
  opacity: 0.75;
}
body main form label input:focus, body main form label textarea:focus {
  box-shadow: 0px 0px 5px 2px rgb(197, 110, 81);
}
body main form fieldset {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main form fieldset legend {
  font-size: 1.125rem;
  padding-bottom: 10px;
}
body main form fieldset div {
  display: flex;
  align-items: center;
  gap: 8px;
}
body main form ::-moz-placeholder {
  opacity: 0.5;
}
body main form ::placeholder {
  opacity: 0.5;
}
body main form #privacyLabel {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  width: auto;
  max-width: none;
}
body main form #privacyLabel span a {
  font-weight: 600;
  color: #c56e51;
}
body main form #buttonContainer button {
  background-color: #c56e51;
  color: #fcfcfa;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  border: none;
  border-radius: 5px;
  padding: 15px 0;
  margin: 10px 0;
  width: 100%;
  box-shadow: 0px 0px 17px 2px rgba(226, 183, 159, 0.6);
}
body main form #buttonContainer button:hover {
  background-color: #e2af58;
  transition: 300ms background-color;
}
body main form #buttonContainer button:not(hover) {
  background-color: #c56e51;
  transition: 300ms background-color;
}

@media screen and (min-width: 1024px) {
  body main form {
    gap: 35px;
  }
  body main form .twoColumnsInForm {
    flex-direction: row;
    gap: 80px;
    row-gap: 35px;
  }
  body main form .twoColumnsInForm fieldset, body main form .twoColumnsInForm label {
    flex: 1;
  }
  body main form #buttonContainer {
    display: flex;
    justify-content: center;
  }
  body main form #buttonContainer button {
    margin: 15px 0;
    width: 75%;
  }
}/*# sourceMappingURL=forms.css.map */=forms.css.map */