.main-container {
  flex: none;
}

.feedback-container {
  flex: 1;
  background-color: #e0ece0;
}

.feedback-wrapper {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto 80px;
}

.feedback-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 45%;
  height: auto;
  background-color: white;
  margin: 80px auto;
  border-radius: 12px;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.2);
  padding: 64px;
  text-align: center;
}

h2 {
  margin: 0px;
}

.description {
  line-height: 1.2;
  margin-top: 24px;
  font-size: 1rem;
}

h3 {
  margin-top: 3rem;
  margin-bottom: 0px;
}

.rating-block {
  margin-top: 16px;
}

.rating {
  text-align: left;
}

.star {
  cursor: pointer;
  color: #e0e0e0;
  font-size: 32px;
  transition: color 0.2s;
}

.star.hovered {
  color: #ffd700;
}

.star.selected {
  color: #ffd700;
}

.rating-block-description {
  margin-top: 16px;
  color: #595959;
  font-size: 14px;
}

textarea {
  margin: 3rem 0px 0px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  line-height: 1.2;
  width: 100%;
  padding: 20px;
  resize: vertical;
  font-size: 1rem;
}

textarea::placeholder {
  opacity: 1; /* Default state for placeholder */
}

textarea:focus::placeholder {
  opacity: 0; /* Hide placeholder on focus */
}

h4 {
  margin-top: 40px;
  margin-bottom: 8px;
}

input {
  margin: 20px 0px 0px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  width: 100%;
  line-height: 1.2;
  width: 100%;
  padding: 20px;
  font-size: 1rem;
}

input::placeholder {
  opacity: 1;
}

input:focus::placeholder {
  opacity: 0; /* Hide placeholder on focus */
}

#form-submit-btn {
  margin-top: 40px;
}

footer {
  margin-top: 0px;
}

@media screen and (max-width: 1300px) {
  .feedback-form-container {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .feedback-form-container {
    width: 65%;
  }
  .star {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .feedback-form-container {
    width: 90%;
    padding: 28px;
  }
  textarea {
    padding: 16px 12px;
  }
  input {
    padding: 16px 12px;
  }
}

/*# sourceMappingURL=feedback.css.map */
