.container {
  width: 86%;
  margin: 0 auto;
}
.form-section {
  padding: 60px 0;
}
.title-form {
  font-weight: 700;
  line-height: 1.1;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 20px;
}
.text-form {
  font-weight: 500;
  text-align: center;
  color: #4d5053;
  margin-bottom: 30px;
}
.form {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  gap: 20px;
  margin: 0 auto;
}
.wrap-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.wrap-input label {
  font-weight: 600;
  font-size: 14px;
  color: #8e9497;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
input,
textarea {
  border: 1px solid #d6dae4;
  padding: 15px 20px;
  font-size: 14px;
  color: #424141;
  border-radius: 30px;
}
input::placeholder,
textarea::placeholder {
  font-weight: 400;
  font-size: inherit;
  color: #424141;
}
.form-btn {
  border-radius: 30px;
  padding: 10px 35px 10px 45px;
  background: linear-gradient(135deg, #f7e400 0%, #ffa002 100%);
  font-weight: 600;
  border: none;
  margin: 0 auto;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #1e1e1e;
}
.form-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* === Медійні запити === */
@media (min-width: 320px) {
  .form {
    width: 90%;
    padding: 15px;
  }
  .title-form {
    font-size: 36px;
  }
  .text-form {
    font-size: 18px;
  }
  .form-btn {
    width: 80%;
    font-size: 14px;
    height: 50px;
  }
}
@media (min-width: 769px) {
  .form {
    width: 60%;
    padding: 50px;
  }
  .title-form {
    font-size: 48px;
  }
  .text-form {
    font-size: 22px;
  }
  .form-btn {
    width: 198px;
    height: 60px;
    font-size: 18px;
  }
}
