@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400);

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: black;
  font-size: 9px;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: black;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: black;
  font-size: 9px;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: black;
}

input::placeholder, textarea::placeholder {
  color: black;
  font-size: 9px;
}

input:focus::placeholder, textarea::focus:placeholder {
  color: black;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: black;
  font-size: 9px;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color:black;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: black;
  font-size: 9px;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: black;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #343434;
  font-size: 9px;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #343434;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #343434;
  font-size: 9px;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #343434;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #343434;
  font-size: 9px;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #343434;
}

#form {
  width: 100%;
}

input {
  font-size: 1em;
  width: 100%;
  height: 50px;
  padding: 0px 15px 0px 15px;

  background: transparent;
  outline: none;
  color: black;

  border: solid 2px black;
  border-bottom: none;
  box-sizing: border-box;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #e2e2e2;
  color: #343434;
}

textarea {
  width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;

  background: transparent;
  outline: none;
  box-sizing: border-box;

  color: white;
  font-size: 0.875em;

  border: solid 2px black;

  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #e2e2e2;
  color: #343434;
}

#submit {

  margin: -5px 0px 0px 0px;

  font-size: 0.8em;
  color: white;
  background: black;

  outline:none;
  cursor: pointer;

  border: solid 2px black;
  border-top: none;
}

#submit:hover {
  color: grey;
}
