:root{
	--eerie-black: #272727ff;
	--white: #FEFEFEff;
	--cyan-process: #25B0E7ff;
	--cool-grey: #8088B8ff;
	--slate-blue: #6065CFff;
	--dark-cornflower-blue: #063E7Fff;
	--lavender-floral: #AC84DAff;
}





.feedback-input {
  color:white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid var(--cool-grey);;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:50%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid var(--cool-grey);; }

textarea {
  height: 75px;
  line-height: 150%;
  resize:vertical;
  color: var(--eerie-black);
}

#feedbackSubmit {
  width: 50%;
  background: var(--slate-blue);
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}


#feedbackSubmit:hover { background:var(--cool-grey); }

#feedbackForm{

  text-align: center;
  

}