.login {
  margin: 50px 0;
}
.login .col {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login .col.hide {
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login .col:first-child {
  padding-right: 5px;
}
.login .col:last-child {
  padding-left: 5px;
}
.login .col .text {
  margin: 20px 0 30px 0;
}
.login .col .text .extra {
  margin-bottom: 20px;
  padding: 20px;
  background: #f3f3f3;
  font-weight: 600;
}
.login .col p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.login .col p b,
.login .col p strong,
.login .col p .bold,
.login .col p.bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.login .col .field {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
  vertical-align: top;
}
.login .col .field.error label {
  color: #de3232;
  -webkit-transition: all 0.6s 0.3s;
  -moz-transition: all 0.6s 0.3s;
  -o-transition: all 0.6s 0.3s;
  transition: all 0.6s 0.3s;
}
.login .col .field.error:after {
  background: #de3232;
  -webkit-transition: all 0.6s 0.3s ease-out;
  -moz-transition: all 0.6s 0.3s ease-out;
  -o-transition: all 0.6s 0.3s ease-out;
  transition: all 0.6s 0.3s ease-out;
}
.login .col .field:before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e2e2e2;
}
.login .col .field:after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 2px;
  background: #56bc8a;
  -webkit-transition: all 0.6s 0.3s ease-out;
  -moz-transition: all 0.6s 0.3s ease-out;
  -o-transition: all 0.6s 0.3s ease-out;
  transition: all 0.6s 0.3s ease-out;
}
.login .col .field.focus:after {
  width: 150px;
  -webkit-transition: all 0.6s 0.3s ease-out;
  -moz-transition: all 0.6s 0.3s ease-out;
  -o-transition: all 0.6s 0.3s ease-out;
  transition: all 0.6s 0.3s ease-out;
}
.login .col .field.typed:after {
  width: 100%;
  -webkit-transition: all 0.6s 0.3s ease-out;
  -moz-transition: all 0.6s 0.3s ease-out;
  -o-transition: all 0.6s 0.3s ease-out;
  transition: all 0.6s 0.3s ease-out;
}
.login .col .field label {
  width: 150px;
  padding-right: 30px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  padding-bottom: 20px;
}
.login .col .field input,
.login .col .field select,
.login .col .field textarea {
  width: calc(100% - 180px);
  display: inline-block;
  vertical-align: top;
  background: none;
  border: none;
  padding-bottom: 20px;
}
.login .col .field input:focus,
.login .col .field select:focus,
.login .col .field textarea:focus {
  outline: 0;
}
.login .col .field input::-webkit-input-placeholder,
.login .col .field select::-webkit-input-placeholder,
.login .col .field textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #404041;
  opacity: 0.4;
}
.login .col .field input::-moz-placeholder,
.login .col .field select::-moz-placeholder,
.login .col .field textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #404041;
  opacity: 0.4;
}
.login .col .field input:-ms-input-placeholder,
.login .col .field select:-ms-input-placeholder,
.login .col .field textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #404041;
  opacity: 0.4;
}
.login .col .field input:-moz-placeholder,
.login .col .field select:-moz-placeholder,
.login .col .field textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #404041;
  opacity: 0.4;
}
.login .col .field .viewPassword {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.login .col .errorMessage {
  margin-bottom: 40px;
  color: #de3232;
  font-weight: 700;
  display: none;
}
.login .col .passwordLost {
  margin-left: 20px;
  color: #404041;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login .col .passwordLost:hover {
  color: #56bc8a;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login .col .extraLink {
  position: absolute;
  right: 0;
  top: 8px;
}
.login .col .extraLink a {
  color: #56bc8a;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.login .col .extraLink a:hover {
  color: #404041;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 767px) {
  .login .contentWrapper .col {
    width: 100%;
  }
  .login .contentWrapper .col:first-child {
    padding-bottom: 50px;
  }
  .login .contentWrapper .col .passwordLost {
    display: block;
    margin-left: 0;
    margin-top: 30px;
  }
  .login .contentWrapper .col .field label {
    width: 120px;
    padding-right: 10px;
  }
  .login .contentWrapper .col .field .input {
    width: calc(100% - 140px);
  }
  .login .contentWrapper .col .extraLink {
    position: static;
    margin-top: 30px;
  }
}
/*# sourceMappingURL=login.css.map */