#contactForm {
	max-width: 500px;
	padding: 0 10px;
}
label {
  display: block;
  position: relative;
  margin: 15px 0 46px 0px;
  font-size: 16px;
}
input, textarea {
  width: 100%;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  background: transparent;
  border: none;
  outline: none;
}
.line-box {
  position: relative;
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-top: -2px;
}
.line {
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFC000;
  transition: ease .4s;
}
input:focus + .line-box .line, textarea:focus + .line-box .line {
  width: 100%;
}
.label-txt {
  position: absolute;
  top: 3px;
  color: #aaa;
  font-weight: 400;
  transition: ease .3s;
}
.label-active {
  top: -16px;
  color: #FFC000;
  font-size: 12px;
  font-weight: 400;
}
#sendMe {
  font-size: 20px;
  padding: 10px 30px;
}
#sendMe.btn-primary {
  color: #FFC000;
  border: 2px solid;
  background-color: transparent;
}
#sendMe.btn-primary:hover, #sendMe.btn-primary:focus {
  color: #333;
  background-color: #FFC000;
  border: 2px solid #FFC000;
  outline: none;
  transition: all .3s ease;
}