.login-clean {
  background: #fff;
  padding: 120px 0 0 0;
  height: 100vh;
}

.login-clean form {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
  padding: 40px;
  color: #505e6c;
  box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-clean .illustration {
  text-align: center;
  padding: 0 0 20px;
  font-size: 100px;
  color: rgb(255, 107, 0);
}

.login-clean form .form-control {
  background: #f7f9fc;
  border: none;
  border-bottom: 1px solid #dfe7f1;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: inherit;
  text-indent: 8px;
  height: 42px;
}

.login-clean form .form-control.custom {
  background: #ffffff;
  border: none;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
}

.login-clean form .btn-primary {
  background-image: linear-gradient(45deg, rgb(255, 107, 0), rgb(218, 92, 0));
  border: none;
  border-radius: 25px;
  padding: 11px;
  box-shadow: none;
  margin-top: 26px;
  text-shadow: none;
  outline: none !important;
}

.login-clean form .btn-primary:hover,
.login-clean form .btn-primary:active {
  background: rgb(218, 92, 0);
}

.login-clean form .btn-primary:active {
  transform: translateY(1px);
}

.login-clean form .forgot {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #6f7a85;
  opacity: 0.9;
  text-decoration: none;
}

.login-clean form .forgot:hover,
.login-clean form .forgot:active {
  opacity: 1;
  text-decoration: none;
}

.intro.small .title.login,
.intro.large .title.login {
  color: #757575;
}

.login-clean .input-container {
  position: relative;
  margin-top: 2em;
}

.login-clean .input-container input {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 54px;
  border: none;
  color: #212121;
  font-size: 20px;
  font-weight: 400;
}

.login-clean .input-container input:focus ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -65%) scale(0.75);
  transform: translate(-12%, -65%) scale(0.75);
}

.login-clean .input-container input:focus ~ .bar:before,
.login-clean .input-container input:focus ~ .bar:after {
  width: 50%;
}

.login-clean .input-container input:valid ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
  transform: translate(-12%, -50%) scale(0.75);
}

.login-clean .input-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #757575;
  font-size: 22px;
  font-weight: 300;
  line-height: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.login-clean .input-container .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #757575;
  width: 100%;
  height: 1px;
}

.login-clean .input-container .bar:before,
.login-clean .input-container .bar:after {
  content: "";
  position: absolute;
  background: #fda085;
  width: 0;
  height: 2px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.login-clean .input-container .bar:before {
  left: 50%;
}
.login-clean .input-container .bar:after {
  right: 50%;
}

.login-clean .btn-custom {
  padding: 1em;
  margin-top: 2em;
}
