.feedback-section {
  width: 50%;
  background: #252525;
  border: 1px solid #00ff9d2e;
  border-radius: 24px;
  padding: 28px;
  margin: 32px 25% 48px;
}

.feedback-section h2 {
  color: #00ff9d;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 1.28px;
}

#feedback-form {
  display: flex;
  flex-direction: column;
}

#feedback-form label {
  color: #d8d8d8;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: left;
}

#feedback-form input,
#feedback-form textarea {
  padding: 12px 14px;
  border: 1px solid #555;
  border-radius: 12px;
  background: #333;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

#feedback-form input:focus,
#feedback-form textarea:focus {
  outline: none;
  border-color: #00ff9d;
}

#feedback-form button {
  margin-top: 18px;
  padding: 13px;
  background-color: #00ff9d;
  color: #2f2f2f;
  border: none;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
}

#feedback-form button:hover {
  background-color: #f4ff61;
}

#form-response {
  padding: 20px;
  font-size: 16px;
  color: #b5f1da;
  background-color: #2f2f2f;
  border-radius: 14px;
  border: 1px solid #00ff9d;
  text-align: center;
}

.hidden {
  display: none;
}

.form-item {
  display: flex;
  flex-direction: column;
}
