/* Form Styles */

/* Type TEXT */
input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #DDDDDD;
}input[type=text]:hover, textarea:hover {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}
/* Type EMAIL */
input[type=email], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #DDDDDD;
}input[type=email]:hover, textarea:hover {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}input[type=email]:focus, textarea:focus {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 20px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}

/* Type MESSAGE */
textarea[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #DDDDDD;
}textarea[type=text]:hover, textarea:hover {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}textarea[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px #8f8072;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border-bottom: 1px solid #8f8072;
}

.floating-label-form-group {
  border-bottom: 0px !important;
}
