.form {
  padding-bottom: 100px;
  background-color: transparent;
  background: linear-gradient(0deg, rgb(247, 248, 242) 0%, rgba(247, 248, 242, 0.8) 95%, rgba(0, 0, 0, 0) 100%);
}
.form__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 24px;
}
.form__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}
.form__container.-button {
  margin-top: 30px;
}
.form__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 40px 0;
  width: 100%;
  max-width: 100%;
}
.form__item.-wide {
  max-width: 100%;
}
.form__item.-invalid .form__item__input,
.form__item.-invalid .form__item__select,
.form__item.-invalid .form__item__textarea,
.form__item.-invalid .form__checkbox__box {
  border: 1px solid #FD3014;
}
.form__item__label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #231F20;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 400;
}
.form__item__input:focus, .form__item__textarea:focus {
  border: 1px solid #6ACD08;
}
.form__item__input, .form__item__select, .form__item__textarea {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px 24px;
  width: 100%;
  height: 100%;
  min-height: 42px;
  color: #757577;
  background-color: #fff;
  border: 1px solid rgba(35, 31, 32, 0.2);
  border-radius: 2px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 400;
}
.form__item__input.-invalid, .form__item__select.-invalid, .form__item__textarea.-invalid {
  border: 1px solid #FD3014;
}
.form__item__textarea {
  min-height: 120px;
  resize: none;
}
.form__item__requirement {
  position: absolute;
  bottom: 12px;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #FD3014;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  line-height: 1.5rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 400;
}
.form__checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.form__checkbox__input {
  display: none;
  margin: 0;
  width: 0;
  height: 0;
}
.form__checkbox__input:checked ~ .form__checkbox__box::before {
  opacity: 1;
}
.form__checkbox__box {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 10px 0 0;
  width: 34px;
  height: 34px;
  border-radius: 2px;
  border: 1px solid rgba(35, 31, 32, 0.2);
  background-color: #fff;
  cursor: pointer;
}
.form__checkbox__box:before {
  content: "";
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background-image: url("/assets/svg/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: center center;
  transition: opacity 0.2s;
}
.form__checkbox__text {
  color: #231F20;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 400;
}
.form__checkbox__text a {
  color: #FDB714;
  text-decoration: underline;
}
.form__button {
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}
.form button[disabled] {
  background: #C4C4C0;
  cursor: not-allowed;
}
.form__captcha {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}
.form__captcha .form__item__requirement {
  left: 0;
}
.form .loading-animation {
  display: inline;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
}
.form .loading-animation div {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: loading-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.form .loading-animation div:nth-child(1) {
  animation-delay: -0.45s;
}
.form .loading-animation div:nth-child(2) {
  animation-delay: -0.3s;
}
.form .loading-animation div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (min-width: 768px) {
  .form__content {
    max-width: 750px;
  }
  .form__container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 40px 0;
    gap: 24px;
  }
  .form__container.-button {
    justify-content: flex-end;
  }
  .form__container.-button .form__item {
    width: auto;
  }
  .form__item {
    padding: 0;
    max-width: 360px;
  }
  .form__item__textarea {
    min-height: 160px;
  }
  .form__item__requirement {
    bottom: -30px;
  }
  .form__button {
    width: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .form {
    padding: 20px 0 200px 0;
  }
  .form__content {
    padding: 0;
  }
}