@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  transition: ease 0.2s;
  font-family: Open Sans;
  text-decoration: none;
}

.field-icon {
  float: right;
  margin-left: 30px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.container1 {
  background: #f8faff;
  color: #4b537c;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  border-radius: 15px;
  margin: 0 auto;
  margin-top: 8px;
  box-shadow: #dee8fe 0 10px 30px 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  
}

.heading {
  font-size: 20px;
}

.para {
  font-weight: 600;
}

.feedback-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feedback-level1 {

  /*display: flex;
  justify-content: space-between;
  align-items: center;*/
  position: absolute;
  top: 45px;
  right: 55px;
  font-size: 18px;
}
}
.level {
  background: white;
  padding: 13px;
  border-radius: 7px;
  border: solid 0.5px #e0e9fe;
  cursor: pointer;
}

.level i {
  font-size: 40px;
}
/*
                                     */
.level1 {
  background: white;
  padding:0px;
  border-radius: 7px;
  border: solid 0.5px #e0e9fe;
  cursor: pointer;
}
.level1:hover {
  box-shadow: #fe73a5 0 2px 5px;
}
.level1:hover i {
  color: #fe73a5;
}
.level1 i {
  font-size: 30px;
}

.feedback-msg textarea {
  margin-top: 5px;
  border: solid 2px #e0e9fe;
  padding: 13px;
  border-radius: 7px;
  outline: none;
  font-size: 14px;
  color: #4b537c;
  font-weight: 500;
  letter-spacing: 1px;
  width: 100%;
  height: 80px;
  resize: none;
}
.feedback-msg input {
  margin-top: 5px;
  border: solid 2px #e0e9fe;
  padding: 13px;
  border-radius: 7px;
  outline: none;
  font-size: 14px;
  color: #4b537c;
  font-weight: 500;
  letter-spacing: 1px;
  width: 100%;
  height: 50px;
  resize: none;
}

.agreement .checkbox {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}
.agreement input {
  accent-color: #ff71a4;
}
.agreement a {
  color: #ff71a4;
  font-size: 12px;
  font-weight: 600;
}
.agreement label {
  font-size: 12px;
  font-weight: 600;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.buttons button {
  background: white;
  color: #4b537c;
  width: 80px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}
.buttons button:hover {
  opacity: 0.9;
}
.buttons button:nth-child(1) {
  border: #f8faff;
  background: #fe71a4;
  color: #f8faff;
}
