html {
 
  background-size: cover;
  height: auto;
}



.form {
  margin: -8px;
  border-radius: 7px;
}
.form__name input {
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Phone_font_awesome.svg/768px-Phone_font_awesome.svg.png);
}
.form__email input {
  background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
}
.form__text textarea {
  background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
  width: 100%;
  height: 150px;
  line-height: 150%;
  resize: vertical;
}
.form__name input, .form__email input, .form__text textarea {
  color: #3c3c3c;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 0;
  line-height: 22px;
  background-color: #ddd;
  padding: 14px 14px 14px 54px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  background-size: 30px 30px;
  background-position: 11px 8px;
  background-repeat: no-repeat;
  border: 1px solid transparent !important;
}
.form__name input:focus, .form__email input:focus, .form__text textarea:focus {
  box-shadow: 0;
  border: 3px solid #e75700;
  color: blue;
  outline: none;
}
.form__submit input {
  float: left;
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: #e75700;
  color: white;
  font-size: 18px;
  padding: 14px;
  transition: all 0.5s;
  line-height: 22px;
    border: 1px solid transparent !important;
}
.form__submit input:hover {
  background-color: #ccc;
  color: #e75700;
}
.form__submit:hover .ease {
  width: 100%;
  background-color: white;
}
.form .ease {
  width: 0px;
  height: 74px;
  background-color: #fbfbfb;
  transition: 0.5s ease;
}

.form__submit, .form__name {width: 50%; box-sizing: border-box;}

.form__submit { float: right; padding-left: 3px;}
.form__name { float: left; margin: 0; padding-right: 3px;}



@media only screen and (max-width: 580px) {
  .form {
    width: 100%;
  }

.form__submit, .form__name {width: 100%; box-sizing: border-box;}

.form__submit { float: none; padding-left: 0px;}
.form__name { float: none; margin: 0; padding-right: 0px;}

}

