body {
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100%;
  background-color: #060f12;
  margin: 0;
  color: #fff;
}

.root {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

h1 {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.rating-description {
  font-size: 16px;
  color: #fff;
  margin: 5px;
  text-align: center;
}

textarea {
  resize: none;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  background-color: #2a3942;
  border-radius: 4px;
  color: #fff;
}

textarea:focus {
  box-shadow: none;
  outline: none;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .button-group {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
}

@media (max-width: 768px) {
  .button-group {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(5, 2fr);
  }
}

.button-contained {
  background-color: #90ee90 !important;
  transform: scale(1);
  color: #000;
  border: none;
  text-align: center;
  transition: backgound-color 1s;
  font-weight: bold;
}

.button-contained:hover {
  background-color: #4d844d;
}

input[type="radio"] {
  display: none;
}

label.radio-button {
  display: inline-block;
  padding: 10px 15px;
  border: #90ee90 solid 2px;
  background-color: transparent;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

input[type="radio"]:checked + label.radio-button {
  background-color: #90ee90;
  border-color: #90ee90;
  color: #000;
}

input[type="radio"]:checked + label.radio-button:hover {
  background-color: #4d844d;
  border-color: #4d844d;
}

label.radio-button:hover {
  background-color: #354540;
}
