/* =============================================
   Форма обратной связи — Contact Form 7
   Файл: /assets/css/cf7-form.css
   ============================================= */

/* --- Обёртка формы (зелёный блок) --- */
.section-feedback__form {
  background: #87e2b6;
  border-radius: 266px 0;
  padding: 100px;
  width: 80%;
  margin-left: auto;
}

/* --- Двухколоночная раскладка --- */
.form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 35px;
  -moz-column-gap: 35px;
  column-gap: 35px;
}

.form-wrapper p {
  margin: 0;
}

/* Левая колонка */
.section-feedback__form .form-column:first-child {
  width: 35%;
}

/* Правая колонка */
.section-feedback__form .form-column {
  width: 60%;
  position: relative;
}

/* --- Текстовые поля (Имя, Почта, Телефон) --- */
.section-feedback__form .input-text,
.section-feedback__form input.wpcf7-text,
.section-feedback__form input.wpcf7-email,
.section-feedback__form input.wpcf7-tel {
	font-weight: 400;
	font-size: 15px;
	line-height: 88.69%;
	text-align: center;
	color: #000;
	border-radius: 40px;
	border: 1px solid #fff;
	padding: 30px 48px !important;
	margin-bottom: 31px;
	width: 100%;
	box-sizing: border-box;
	display: block;
	background: #fff;
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.section-feedback__form .input-text::placeholder,
.section-feedback__form input.wpcf7-text::placeholder,
.section-feedback__form input.wpcf7-email::placeholder,
.section-feedback__form input.wpcf7-tel::placeholder {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: rgba(79, 79, 79, 0.4);
}

.section-feedback__form .wpcf7-not-valid {
  border: 1px solid red;
}

/* --- Textarea (Комментарий) --- */
.section-feedback__form .input-textarea,
.section-feedback__form textarea.wpcf7-textarea {
  font-weight: 400;
  font-size: 15px;
  line-height: 88.69%;
  text-align: center;
  color: #000;
  border-radius: 40px;
  border: none;
  padding: 22px 48px;
  width: 100%;
  height: 250px;
  margin-bottom: 0;
  box-sizing: border-box;
  background: #fff;
  outline: none;
  resize: none;
  display: block;
  box-shadow: none;
}

.section-feedback__form .input-textarea::placeholder,
.section-feedback__form textarea.wpcf7-textarea::placeholder {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: rgba(79, 79, 79, 0.4);
}

/* --- Кнопка Отправить --- */
.section-feedback__form .form-input__wrapper-submit {
  position: absolute;
  right: 10px;
  bottom: 38px;
}

.section-feedback__form .wpcf7-submit,
.section-feedback__form input[type="submit"] {
  background: #ffa0a6;
  border-radius: 35px;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  color: #fff;
  padding: 15px 65px;
  border: none;
  cursor: pointer;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.section-feedback__form .wpcf7-submit:hover,
.section-feedback__form input[type="submit"]:hover {
  background: #ff8a91;
}

.section-feedback__form .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-feedback__form .wpcf7-not-valid-tip {
  display: none;
}

/* --- Чекбокс согласия --- */
.section-feedback__form .form-input__wrapper-accept,
.section-feedback__form .form-input__wrapper.form-input__wrapper-accept {
  font-weight: 400;
  font-size: 13px;
  line-height: 88.69%;
  color: #fff;
  width: 100%;
  margin-top: 20px;
}

.section-feedback__form .wpcf7-form-control.wpcf7-acceptance {
  display: block;
  font-size: 13px;
  background: transparent;
  box-shadow: none;
  text-align: left;
  border: none;
  padding: 0;
}

.section-feedback__form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

/* --- Ответ формы --- */
.section-feedback__form .wpcf7-response-output {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  border: none;
}

/* =============================================
   АДАПТИВ
   ============================================= */
@media (max-width: 1284px) {
  .section-feedback__form {
    width: 100%;
    padding: 35px;
    border-radius: 74px 0;
  }

  .section-feedback__form .form-column:first-child,
  .section-feedback__form .form-column {
    width: 100%;
  }

  .section-feedback__form .form-input__wrapper-submit {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}