
#contactForm {
  width: 600px;
  margin-top:30px;
  border-radius: 7px;
}

.feedback-input {
  color:#3c3c3c;
  font-weight:500;
  font-size: 18px;
  border-radius: 0;
  line-height: 22px;
  background: #DAD1BD;
  padding: 13px 13px 13px 54px;
  margin-bottom: 10px;
  width:100%;
  box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
  background: #fff;
  box-shadow: 0;
  border: 3px solid #3498db;
  color: #3498db;
  outline: none;
  padding: 13px 13px 13px 54px;
}

.focused{
  color:#30aed6;
  border:#30aed6 solid 3px;
}
.captcha {
  margin: 0 auto;
  padding: 5px;
  border: 4px inset #333;
  float:  left;
}
.captcha-input {
  margin-left: 210px;
  padding-top: 10px;
  width: 50%;
}

/* Icons ---------------------------------- */
#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;
}

#message{
  background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

#sendButton {
  font-family: 'Rye', sans-serif;
  width: 100%;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:22px;
  padding-bottom:22px;
  margin-top:-4px;
}

#sendButton:hover{
  background-color: rgba(0,32,64,0.5);
  color: #0493bd;
}