form {
  position: relative;
  top: auto;
  padding-bottom: 20px;
}

.f1t-form-field {
  padding-bottom: 24px;
}

.f1t-form-field__label {
  display: none;
}

.f1t-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 47px;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.f1t-form__submit:hover {
  background-color: var(--color);
  color: var(--color-primary-text-button);
}

.f1t-form-field {
  position: relative;
}

.f1t-form-field__error {
  font-size: 12px;
  margin-top: 5px;
}

.f1t-form-field label {
  display: block;
}

.f1t-form-field input {
  display: block;
  width: 100%;
  height: 47px;
  background-color: #212022;
  border: 1px solid #212022;
  border-radius: 4px;
  border: none;
  padding: 0 26px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  transition: border-color 0.15s ease;
}

.f1t-form-field input:focus {
  border-color: rgb(0, 195, 255);
}

.f1t-form-field input::placeholder {
  opacity: 0.7;
}

.iti__selected-flag {
  border-radius: 4px 0 0 4px;
}

.iti__country-name {
  color: #212022;
}

.f1t-form-field--error input,
.f1t-form-field--error textarea,
.f1t-form-field--error select {
  border-color: red;
}

.f1t-form-field--phone input {
  padding-right: 6px;
  padding-left: 52px;
}

.f1t-modal__text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.f1t-modal__text p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

@media (max-width: 575px) {
  .f1t-modal__text h3 {
    font-size: 20px;
  }

  .f1t-modal__text p {
    font-size: 14px;
  }
}
