body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
}

input, select, textarea, button {
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
}

.rating-stars {
  display: flex;
  gap: 10px;
  font-size: 36px;
  cursor: pointer;
  margin-top: 10px;
}

.rating-stars span {
  color: lightgray;
  transition: color 0.2s;
  font-weight: bold;
}

.rating-stars .selected,
.rating-stars span:hover,
.rating-stars span:hover ~ span {
  color: gold;
}
button {
  background-color:#3C1B50;; 
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color:#CA8A1C; 
}

