textarea {
  background-color: #FFFFFF;
  text-transform: none;
  padding: 5px 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #FFFFFF;
  transition: border-color 0.3s ease-out;
  overflow: auto;
  width: 100%;
}
textarea:hover {
  border-color: #324DC4;
}
textarea:focus {
  border-color: #324DC4;
  outline: 0;
}
