.hero-form__wrapper {
  width: 100%;
  background-color: #121314;
}
@media screen and (min-width: 641px) {
  .hero-form__wrapper {
    padding: 50px 0;
  }
}
@media screen and (max-width: 640px) {
  .hero-form__wrapper {
    padding: 40px 0;
  }
}

.hero-form {
  display: flex;
  max-width: 1442px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1240px) {
  .hero-form {
    flex-direction: column;
  }
}
@media (min-width: 1241px) and (max-width: 1480px) {
  .hero-form {
    padding: 0 30px;
  }
}
@media (max-width: 1240px) and (min-width: 1025px) {
  .hero-form {
    padding: 0 25px;
  }
}
@media (max-width: 1024px) {
  .hero-form {
    padding: 0 15px;
  }
}
.hero-form h2 {
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  color: #ffffff;
  height: fit-content;
}
@media screen and (min-width: 641px) {
  .hero-form h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .hero-form h2 {
    font-size: 20px;
  }
}

form {
  display: flex;
  flex-direction: column;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 941px) {
  .form-input {
    width: 100%;
  }
}
@media screen and (max-width: 940px) and (min-width: 641px) {
  .form-input {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 640px) {
  .form-input {
    width: 100%;
  }
}
.form-input label {
  font-family: "Haval", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #ffffff;
}
.form-input input {
  padding: 13px 0px 13px 20px;
  background-color: transparent;
  outline: none;
  border: 1px solid #f8f8f8;
  font-family: "Haval", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #626970;
}
.form-input input::placeholder {
  font-family: "Haval", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #626970;
}

button[type=submit] {
  width: 100%;
  max-width: 340px;
  font-family: "Haval", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffffff;
  min-height: 56px;
  background-color: #00cabe;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 0;
}

.form-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .form-row {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 940px) {
  .form-row {
    flex-wrap: wrap;
  }
  .form-row button[type=submit] {
    max-width: 100%;
  }
}

.form-column {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-top: 30px;
}
.form-column button[type=submit] {
  max-width: 100%;
}

.checkbox {
  margin-top: 20px;
}
.checkbox label {
  color: #fff;
}
.checkbox label a {
  color: #00cabe;
}

input.error {
  border-color: red;
}

/* Customize the label (the container-checkbox) */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--belyy);
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #00CABE;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
  background-color: transparent;
  border: 1px solid #00CABE;
  border-radius: 4px;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
  background-color: #00CABE;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 9px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}/*# sourceMappingURL=form.css.map */