main{
  padding-top: 30px;
  padding-bottom: 60px;
}
.createReviewH1{
  border-left: solid #294e6f 10px;
  border-bottom: solid #294e6f 1px;
  font-size: 24px;
  width: 90%;
  margin: 0 auto;
  padding-left: 30px;
  height: 40px;
  line-height: 40px;
}
.createReviewWrapper{
  width: 60%;
  margin: 0 auto;
  padding: 50px 0px;
}
.createReviewWrapper > h2{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 80%;
  padding: 30px 0px;
  margin: 0 auto;
  border-bottom: dotted rgb(67, 67, 67) 3px;
}
.createReviewWrapper > form{
  width: 80%;
  margin: 0 auto;
  padding: 40px 20px ;
}
.createReviewWrapper > form > p{
  
  font-size: 20px;
  margin: 20px 0px;
}
.createReviewWrapper > form > input{
  
  border: solid black 1px;
  border-radius: 20px;
  width: 70%;
  height: 40px;
  padding:0.5em 1em;
}
.createReviewWrapper > form > textarea{
  border: solid black 1px;
  border-radius: 3px;
  width: 100%;
  height: 100px;
  resize: none;
  padding: 10px;
}
.button_solid014 button{
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  box-shadow: 5px 5px 0 #6bb6ff;
  border-radius: 50px;
  width: 150px;
  margin-top: 50px;
}
.button_solid014 button:hover {
background-color: #b3d9ff;
box-shadow: 0 0 0;
transform: translate(5px, 5px);
}
.button_solid014 button:after {
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
}