/*Form start*/
#feedback-page {
  text-align: center;
}

#text-feedback {
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: white;
  text-align: center;
}

#form-main {
  width: 100%;
  float: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

#form-div {
  background-color: #F1562D;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 35px;
  padding-bottom: 50px;
  width: 450px;
  float: left;
  left: 50%;
  position: relative;
  margin-left: -260px;
}

.feedback-input {
  color: #3A3536;
  font-family: 'dimbo', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.5em;
  border-radius: 0;
  line-height: 22px;
  background-color: white;
  border: 3px solid #fbfbfb;
  padding: 13px 13px 13px 54px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.feedback-input:focus {
  background: #fff;
  box-shadow: 0;
  border: 3px solid #444;
  color: #000;
  outline: none;
  padding: 13px 13px 13px 54px;
}

.focused {
  color: #30aed6;
  border: #30aed6 solid 3px;
}
/*Form end*/

/*Icons start*/
#name {
  background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}

#name:focus {
  background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
  background-size: 30px 30px;
  background-position: 8px 5px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}

#email {
  background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}

#email:focus {
  background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}

#feedback {
  background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}
/*Icons end*/

/*Textarea for feedback start*/
textarea {
  width: 100%;
  height: 150px;
  line-height: 150%;
}
/*Textarea for feedback end*/

/*Button start*/
#button {
  font-family: 'dimbo', Helvetica, Arial, sans-serif;
  float: left;
  width: 100%;
  border: #F1562D; solid 4px;
  cursor: pointer;
  background-color: #3A3536;
  color: white;
  font-size: 1.5em;
  padding-top: 22px;
  padding-bottom: 22px;
}

#button:hover {
  background-color: #222;
}
/*Button end*/

/*Mobile Form CSS start*/	
@media only screen and (max-width: 580px) {
	#form-div {
	  left: 1%;
	  margin-right: 5%;
	  width: 88%;
	  margin-left: 0;
	  padding-top:5%;
	  padding-bottom:5%;
	  padding-left: 5%;
	  padding-right: 5%;
	}
}
/*Mobile Form CSS end*/