.blanterinput {
  float: none;
  position: relative;
  margin-bottom: 45px;
  margin-right: 10px;
}

.blanterinput input,
.blanterinput textarea {
  font-size: 15px;
  padding: 15px 0;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
}

.blanterinput input:focus,
.blanterinput textarea:focus {
  outline: none;
}

.blanterinput label {
  color: #999;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
}

.blanterinput input:focus ~ label,
.blanterinput input:valid ~ label,
.blanterinput textarea:focus ~ label,
.blanterinput textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #12d0b0;
}

.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before,
.bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #12d0b0;
  transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

.blanterinput input:focus ~ .bar:before,
.blanterinput input:focus ~ .bar:after,
.blanterinput textarea:focus ~ .bar:before,
.blanterinput textarea:focus ~ .bar:after {
  width: 50%;
}

.highlight {
  position: absolute;
  height: 50%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.blanterinput input:focus ~ .highlight,
.blanterinput textarea:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}

.blanterinput input:focus ~ label,
.blanterinput input:valid ~ label,
.blanterinput textarea:focus ~ label,
.blanterinput textarea:valid ~ label {
  top: -20px;
  font-size: 13px;
  color: #12d0b0;
}

input#ContactForm1_contact-form-email-message {
  height: 150px;
}

input#ContactForm1_contact-form-submit {
  color: #fff !important;
  background: #12d0b0;
  padding: 15px 25px;
  border-radius: 4px;
  border: none;
  outline: none;
  box-shadow:
    0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  float: left;
  margin-top: 15px;
}

input#ContactForm1_contact-form-submit:hover {
  box-shadow:
    0 8px 17px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#ContactForm1_contact-form-error-message {
  float: right;
  background: #d32f2f;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}

#ContactForm1_contact-form-success-message {
  float: right;
  background: #4caf50;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
}
