/* Feedback Page Styles */

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section {
  width: 100%;
  max-width: 600px;
  color: #fff;
}

.section h2 {
  text-align: center;
  margin-bottom: 10px;
  color: #00d4ff;
  /* Cyan accent */
  font-family: 'Poppins', sans-serif;
}

.section p {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #e0e0e0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
}

.form-group select option {
  background-color: #16213e;
  color: #fff;
}


.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #00d4ff, #005bea);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.message {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  min-height: 24px;
}

.message.success {
  color: #00ff88;
}

.message.error {
  color: #ff4d4d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feedback-card {
    padding: 20px;
  }
}