.field {
  position: relative;
  margin: 20px 0 5px;
}
.field-row {
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px
}
.required:after {
  content:" *";
}
.field input,
.field textarea,
.field .html-input {
  background: none;
  color: #000000;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #000000;
  font-family: 'barlow', sans-serif;
}
.field input:focus,
.field textarea:focus,
.field .html-input:focus {
  outline: none;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #1C12E3;
}
.field input:focus ~ .bar:before,
.field textarea:focus ~ .bar:before,
.field .html-input:focus ~ .bar:before {
  width: 100%;
}
.field input::-webkit-input-placeholder,
.field textarea::-webkit-input-placeholder {
  color: transparent;
}
.field input[required]::after {
  content: '*';
  position: absolute;
  top: 5px;
  right: 5px;
}
.field textarea {
  resize: none;
}
.field input[type="password"] {
  letter-spacing: 0.3em;
}
.field label {
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}
.field .bar {
  position: relative;
  display: block;
  width: 100%;
}
.field .bar:before {
  content: "";
  height: 3px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #1C12E3;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  left: 0%;
}
/* checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1.4rem;
  color: #000000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    margin: 20px 0 5px;

}
.checkbox input+span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    z-index: 0;
    border: 2px solid #000000;
    border-radius: 1px;
    margin-top: 3px;
    -webkit-transition: .2s;
    transition: .2s;
}
.checkbox input:checked+span:before {
    top: -4px;
    left: -5px;
    width: 12px;
    height: 22px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #1C12E3;
    border-bottom: 2px solid #1C12E3;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.btn {
  display: inline-block;
  font-family: 'barlow', sans-serif;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background: #1C12E3;
  color: #FFFFFF;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.4px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  transform: translate3d(0, 0, 0) perspective(1px);
  z-index: 1;
}
.btn:hover {
  /*transform: perspective(1px) scale(1.1);
  z-index: 5;
  */
}
.btn.disabled {
  z-index: 1;
  background:  #b0bec5;
}
.btn.disabled:hover {
  z-index: 1;
  transform: translate3d(0, 0, 0) perspective(1px);
}
