body {
  background: #050a53;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', Courier, monospace;
}
.sectionFeedback {
  max-width: 500px;
  padding: 20px;
  border-radius: 12px;
  background: rgb(254, 253, 254);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.star-rating {
  font-size: 24px;
  cursor: pointer;
}
.star-rating i {
  color: #ccc;
  transition: 0.3s;
}
.star-rating i.active {
  color: #ffd700; 
}
.btn-submit {
  background: #026b09;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  transition: 0.3s;
}
.btn-submit:hover {
  background: #0e414a;
  color: white;
}