.feedback-form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: auto;
  backdrop-filter: blur(4px);
  margin: 0 auto;
  color: #333;
}

@media (min-width: 769px) {
  .feedback-form-container {
    width: 480px;
  }
}

.feedback-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #222;
}

.feedback-form-container input,
.feedback-form-container textarea,
.feedback-form-container select {
  width: 100%;
  height: 36px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 16px;
  padding: 5px 10px;
  outline: none;
  transition: 0.3s;
}

.feedback-form-container textarea {
  height: 96px;
}

.feedback-form-container input:focus,
.feedback-form-container textarea:focus,
.feedback-form-container select:focus {
  background: #f9f9f9;
  border-color: #66afe9;
  box-shadow: 0 0 5px rgba(102, 175, 233, 0.6);
}

.feedback-form-container select option {
  background: #fff;
  color: #333;
  font-size: 16px;
}

.feedback-form-container button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.feedback-form-container button:hover {
  background: linear-gradient(to right, #00c6ff, #007bff);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

#captcha-section {
  width: 100%;
}

label {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  color: #222;
}

#submit-button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  opacity: 0.6;
}