.widget-feedback__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #484848;
  text-align: center;
}

.widget-feedback__subtitle {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #484848;
  text-align: center;
}

.widget-feedback__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 45px;
  margin-top: 20px;
  padding: 30px 15px;
  border-radius: 15px;
  background: linear-gradient(180deg, #FBD279 0%, #F3B133 100%);
  overflow: hidden;
}

.widget-feedback__form-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #484848;
}

.widget-feedback__form-subtitle {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #484848;
}

.widget-feedback__form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-feedback__form-field-icon { display: none; }

.widget-feedback__form-field-input {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #F6BD4D;
  background: #FFF9EF;
  box-shadow: 0 1px 2px 1px #D4AB5C inset;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #484848;
}
.widget-feedback__form-field.error .widget-feedback__form-field-input { border: 1px solid #c00; }
.widget-feedback__form-field.error .widget-feedback__form-field-input::placeholder { color: #c00; }

.widget-feedback__form-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px 45px;
}

.widget-feedback__agree {
  display: flex;
  align-items: center;
}
.widget-feedback__agree .conf-signature {
  padding: 0;
}

.widget-feedback__form-success-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #484848;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .2s ease-in-out;
}
.widget-feedback__form.sent .widget-feedback__form-success-message {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.widget-feedback__form-loader { position: absolute; }

@media screen and (min-width: 1024px) {
  .widget-feedback__title { font-size: 46px; }
  .widget-feedback__subtitle { font-size: 20px; }
  .widget-feedback__form-title { font-size: 25px; }
  .widget-feedback__form-subtitle {
    margin-top: 20px;
    font-size: 16px;
  }

  .widget-feedback__form {
    grid-template-columns: repeat(2, 1fr);
    padding: 80px 100px;
  }

  .widget-feedback__form-actions {
    grid-column: 1 / span 2;
    grid-template-columns: repeat(2, 1fr);
  }

  .widget-feedback__form-btn-submit-container { order: 2; }

  .widget-feedback__agree * { text-align: left; }
}

@media screen and (min-width: 1521px) {
  .widget-feedback__form {
    gap: 33px 45px;
    padding: 80px 145px;
  }

  .widget-feedback__form-field {
    display: grid;
    grid-template-columns: 33px 1fr;
    align-items: center;
    gap: 20px;
  }
  .widget-feedback__form-field-icon { display: block; }

  .widget-feedback__form-btn-submit-container { padding-left: 53px; }
}
