/* Container styling */
.feedback-form {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  box-shadow: none;
}

/* Form labels */
.feedback-form label {
  font-weight: 500;
  color: #000;
  margin-bottom: 0.4rem;
  display: block;
}

/* Inputs, Textareas, and Selects */
.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form textarea,
.feedback-form select {
  background-color: #f2fcfd;
  border: 1px solid #ccc;
  box-shadow: none;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 1rem;
  border-radius: 0;
  transition: border 0.3s ease;
  color: #000;
}

/* Focus styling */
.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form select:focus {
  border-color: #037b90;
  background-color: #fff;
  outline: none;
}

/* Select (Dropdown) specific styling */
.feedback-form select {
  background-color: #037b90;
  color: #fff;
  font-weight: 500;
}

/* Submit button styles (input and button for compatibility) */
.form-actions input[type="submit"],
.form-actions button[type="submit"],
.btn.btn-submit {
  width: 100%;
  background-color: #ff7f50;
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

/* Hover state for submit */
.form-actions input[type="submit"]:hover,
.form-actions button[type="submit"]:hover,
.btn.btn-submit:hover {
  background-color: #037b90;
  color: #fff;
}

/* Row spacing */
.feedback-form .row > div {
  margin-bottom: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .feedback-form .row .col-md-6 {
    width: 100%;
  }
}
