/* dark blue for small: #005A8A */
/* dark blue: #007BBD */
/* pink: #CC4969 */
/* dark pink: #8F293F */
/* light blue: #E5F2F9 */
/* aqua: #96D7DD */
.row {
  margin: 0;
}
.section {
  margin: 0;
}
.show-desktop {
  display: none;
}
.header {
  border-radius: unset;
  margin-bottom: 0;
}
.header .row {
  margin: 0 auto;
}
.header-text p {
  text-align: center;
  margin: 0 auto;
}
.form-content {
  width: 100%;
  margin: auto;
  padding: 0.5rem 0;
}
.form {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
}
.form .row .form-content {
  margin: auto;
  float: none;
}
.progress-container {
  background: #F5F8F7;
  height: 12px;
  box-shadow: none;
  margin: 20px auto 0;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #efefef;
}
.progress-left {
  height: 12px;
  display: inline-block;
  background: #66c296;
  position: relative;
  top: -6px;
  border-radius: 10px;
}
.progress .progress-bar {
  background: #66c296;
  height: 10px;
}
.progress-container progress {
  width: 100%;
}
progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
}
progress[value]::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
form {
  display: flex;
  flex-direction: column;
}
.form-wrapper {
  width: 100%;
  gap: 20px;
  justify-content: center;
}
.input-wrapper::before {
  display: none;
}
.input-wrapper {
  min-width: 47%;
  display: flex;
  flex-direction: column;
}
.input-wrapper label {
  background-color: #cc4969;
  border-radius: 6px;
  width: 100%;
  display: block;
  font-size: 18px;
  padding: 20px 20px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  flex-basis: 100%;
  text-transform: none;
}
.text-center {
  text-align: center;
}
form h3 {
  margin: 20px auto 30px;
}
.partner-logos {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .container-fluid {
    max-width: 970px;
    margin: auto;
  }
  .show-desktop {
    display: inline-block;
  }
  .header {
    margin-bottom: 10px;
  }
  .form {
    padding-bottom: 40px;
  }
  .border-radius {
    border-radius: 10px;
  }
  .progress-container {
    width: 90%;
    margin: 30px auto 40px;
  }
  .input-wrapper::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    filter: unset;
    position: absolute;
    margin-top: -12px;
    top: 50%;
  }
  .gen-1::before {
    background-image: url(/images/icons/male.svg);
    filter: invert(100%);
    left: 30%;
  }
  .gen-2::before {
    background-image: url(/images/icons/female.svg);
    filter: invert(100%);
    left: 28%;
  }
  .input-wrapper label {
    padding: 0.75rem 0;
  }
}
@media screen and (max-width: 767px) {
  .cta {
    border-radius: unset;
  }
  form h3 {
    margin-bottom: 20px;
  }
  .form-wrapper {
    flex-direction: row;
  }
  .form-content {
    padding: 0 20px;
  }
  .container {
    padding: 0;
    width: 100%;
  }
  .input-wrapper label:before {
    content: "";
    display: block;
    margin: 0 auto 1.5rem auto;
    padding: 1rem 0;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    filter: unset;
  }
  .input-wrapper.gen-1 label:before {
    background-image: url(/images/icons/male.svg);
    filter: invert(100%);
  }
  .input-wrapper.gen-2 label:before {
    background-image: url(/images/icons/female.svg);
    filter: invert(100%);
  }
  .row .col.s2, .row .col.s8 {
    width: 100%;
  }
}
