.consent-checkboxes {
  width: 100%;
  text-align: left;
  margin: 14px 0;
}
.consent-label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.4;
  color: #000e28;
  text-transform: none;
  letter-spacing: 0;
  user-select: none;
}
.consent-label:last-child {
  margin-bottom: 0;
}
.consent-cb {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.consent-text {
  display: inline-block;
  position: relative;
  padding-left: 28px;
}
.consent-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #252b2b;
  flex-shrink: 0;
}
.consent-cb:checked ~ .consent-text::before {
  background-color: #252b2b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M4.00001 7.78L1.22001 5L0.280029 5.94L4.00001 9.66L11.72 1.94L10.78 1L4.00001 7.78Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.consent-text a {
  color: #000e28;
  text-decoration: underline;
}
.form {
  padding-bottom: 0;
}
.form form {
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  height: 350px;
  padding-bottom: 40px;
}
.form form .form__item--title {
  text-align: center;
  padding-top: 20px;
}
.form form .form__row--fields {
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 993px) {
  .form form {
    height: auto;
  }
  .form form .form__row--fields {
    flex-direction: column;
    gap: 0;
  }
  .form form .form__item--submit {
    margin-top: 0;
  }
}
.form form .form__item {
  width: calc(100% - 20px);
  flex: 1;
}
.form__row--btn {
  justify-content: flex-end;
}
.form__row--btn .form__item--submit {
  flex: 0 1 auto;
}
.form__wrapper form > .form__item--title {
  margin-bottom: 15px;
}
.form__row--fields {
  justify-content: flex-start;
}
.form__row--fields .form__item--text {
  flex: 0 0 25%;
}