/* reset CSS */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

body {
  font-size: 16px;
  font-family: "HP Simplified", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  background-color: #f9fafc;
}

p {
  line-height: 1.5rem;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: bold;
  margin: 0 0 2rem 0;
}

.header {
  border-bottom: 1px solid #b9b8bb;
  background-color: #ffffff;
}

.header__content {
  max-width: 1000px;
  margin-left: 60px;
}

.brand_logo {
  height: 5rem;
}

.footer {
  background-color: #5a5a5a;
  color: white;
}

.footer__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1rem 5rem 1rem;
}

.main {
  max-width: 1000px;
  margin: 0 auto;
}

.content {
  padding: 1.5rem 1rem 0;
}

.requiredInput .error {
  border-color: red;
}

.formField .errorMsg {
  padding-top: 0.5rem;
  color: red;
}

/* Message at the top of the form. */
.formErrorMsg {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid red;
  color: red;
}

.hero {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
}

/* form styling */
.form {
  max-width: 1000px;
}

.formField {
  margin-bottom: 15px;

}

.inputField {
  font-family: "HP Simplified", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;

  width: 100%;
  
  line-height: 2rem;
  height: 2.3rem;
  padding: 0 0.5rem;
}

.outputLabel {
  font-size: 0.85rem;
}

.inputCheckbox {
  transform: scale(1.2);
}

.requiredLabel {
  color: red;
}

.formControls {
  display: flex;
  justify-content: center;
}

/* button component */
.btn {
  padding: 0.5rem 1rem;
  font-family: "HP Simplified", Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  border-radius: 2px;
  border: none;
}

.btn:hover {
  cursor: pointer;
}

.btn:disabled {
  opacity: .50;
  background-color: #999 !important;
}

.btn.btn--primary {
  color: white;
  background-color: #0096d6;
}

.btn.btn--primary:hover {
  background-color: #006699;
}

.privacy_notice {
  padding-top: 2rem;
}

.thankyou_notice {
  padding-bottom: 5rem;
}

.text-base {
  font-size: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

.flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.font-bold {
  font-weight: 700;
}

/*inputs*/
input, textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
  }
  /*buttons*/
.action-button {
    font-weight: normal;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 30px;
    margin: 10px 5px;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-radius: 5px;
  }
.action-button:hover, .action-button:focus {
    box-shadow: 0 0 0 2px #006699, 0 0 0 3px #2C3E50;
  }