.material.input {
  position: relative;
  margin: 40px 0px 20px 0px;
  /* LABEL ================================= */
  /* BOTTOM BARS ================================= */
  /* HIGHLIGHTER ================================== */
}
.material.input input {
  font-size: 18px;
  padding: 10px 10px 10px 0px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #844236;
  margin: 2px 0;
}
.material.input input:focus {
  outline: none;
}
.material.input input[type="password"] {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.material.input label {
  color: #844236;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 1px;
  top: 10px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  cursor: text;
}
.material.input .bar {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  top: -3px;
}
.material.input .bar .left, .material.input .bar .right {
  height: 0px;
  position: absolute;
  background: #cb844e;
}
.material.input .highlight-bar {
  position: absolute;
  height: 25px;
  width: 50px;
  top: 10px;
  left: 50px;
  pointer-events: none;
  opacity: 0.5;
}

.material.input.up label {
  top: -20px;
  font-size: 14px;
}

.material.input.focused .bar .left, .material.input.focused .bar .right {
  height: 2px;
}

.material.input.focused.up label {
  color: #cb844e;
}

.material.input.focused.down .highlight-bar {
  -webkit-animation: material-input-text-highlight-bar 0.3s ease;
          animation: material-input-text-highlight-bar 0.3s ease;
}

@-webkit-keyframes material-input-text-highlight-bar {
  from {
    background: #cb844e;
  }
  to {
    width: 0;
    left: 0;
    background: transparent;
  }
}

@keyframes material-input-text-highlight-bar {
  from {
    background: #cb844e;
  }
  to {
    width: 0;
    left: 0;
    background: transparent;
  }
}
