@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("/Content/fonts/merriweather-v33-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 400;
  src: url("/Content/fonts/merriweather-v33-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/Content/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/Content/fonts/inter-v20-latin-700.woff2") format("woff2");
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.form-grid fieldset {
  grid-column: 1/-1;
  border: 0;
  padding: 0;
  font-family: "inter", "Arial Narrow", Arial, sans-serif;
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}
.form-grid fieldset.field {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form-grid fieldset {
    grid-template-columns: repeat(12, 1fr);
  }
}
.form-grid legend {
  background-color: #555;
  padding: 10px;
  font-weight: 600;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  width: 100%;
  margin-bottom: 20px;
}
.form-grid .field {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-grid .field.half {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .form-grid .field.third {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .form-grid .field.quarter {
    grid-column: span 3;
  }
}
.form-grid .field.submit-group {
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
.form-grid label {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
}
.form-grid label .required {
  color: #c15727;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  box-sizing: border-box;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #c15727;
  outline: none;
}
.form-grid .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 0;
}
.form-grid .checkbox-group .checkbox-item {
  display: flex;
  flex-direction: column;
}
.form-grid .checkbox-group .checkbox-item label {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  justify-content: flex-start;
}
.form-grid .checkbox-group .checkbox-item label input {
  background: lime;
  cursor: pointer;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 2px 0 0 0;
}
.form-grid .checkbox-group .checkbox-item label .label-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2px 0 0 15px;
}
.form-grid .checkbox-group .checkbox-item label .label-title {
  font-size: 16px;
}
.form-grid .checkbox-group .checkbox-item label .label-teaser {
  font-size: 14px;
  font-family: "Merriweather", Georgia, Cambria, "Times New Roman", serif;
  line-height: 1.6;
  font-weight: 400;
  padding: 5px 0 0 0;
}

.group-label {
  margin-bottom: 0 !important;
}

.validateerror,
.error-message {
  background: #c15727;
  color: #fff;
  font-weight: 700;
  padding: 20px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.validateerror a,
.error-message a {
  color: #fff;
  text-decoration: underline;
}

/*# sourceMappingURL=forms.css.map */
