/* .wrap {
  width: 450px;
  margin: 0 auto;
} */


@-webkit-keyframes rainbow {
  0%{background-position:0% 82%}
  50%{background-position:100% 19%}
  100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
  0%{background-position:0% 82%}
  50%{background-position:100% 19%}
  100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
  0%{background-position:0% 82%}
  50%{background-position:100% 19%}
  100%{background-position:0% 82%}
}
@keyframes rainbow { 
  0%{background-position:0% 82%}
  50%{background-position:100% 19%}
  100%{background-position:0% 82%}
}

.sky-label {
  display: block;
  font-size: 16px;
  transform: translateY(25px);
  color: #e2e2e2;
  transition: all 0.5s;
  text-align: center;
}

.btn-grad {background-image: linear-gradient(to right, #000046 0%, #1CB5E0  51%, #000046  100%)}
.btn-grad {
   text-align: center;
   text-transform: uppercase;
   background-size: 200% auto;
   color: white;         
   transition: all 0.8s;
   box-shadow: 0 0 20px #eee;
   display: block;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }

.sky-input {
  position: relative;
  background: transparent;
  width: 100%;
  border: none;
  outline: none;
  padding: 8px 0;
  transition: all 0.5s;
  font-size: 16px;
  text-align: center;
}

.divContainer {
  /* padding: 30px 0 0 0; */
  padding: 20px 0 0 0;
  position: relative;
}

.logoLogin{
  /* width: 300px; */
  width: 250px;
  margin-left: 22px;
}

.login-form{
  box-shadow: 0 0 10px black;
  background-color: white;
  /* min-width: 490px; */
  max-width: 400px;
  min-width: 400px;
}

.divContainer:after, .divContainer:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e2e2e2; 
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}

.divContainer::after {
  background-color:#7094bc;
  transform: scaleX(0);
}

.is-active::after {
  transform: scaleX(1);
}

.is-active .sky-label {
  color:#7094bc;
}

.is-completed .sky-label {
  font-size: 12px;
  transform: translateY(0);
}

.loginBtn{
  margin-bottom: 30px;
  width: 100%;
}

legend.form-label {
  font-size: 24pt;
  padding: 0 15px;
}

.form-control.error {
  border-color: red;
}

.form-hint {
  font-size: 7pt;
  line-height: 9pt;
  margin: -5px auto 5px;
  color: #999;
}

.form-hint.error {
  color: #C00;
  font-weight: bold;
  font-size: 8pt;
}

.password-count {
  float: right;
  position: relative;
  bottom: 24px;
  right: 10px;
}

.strength-meter {
  position: relative;
  height: 3px;
  background: #DDD;
  margin: 10px auto 20px;
  border-radius: 3px;
}

.strength-meter:before,
.strength-meter:after {
  content: '';
  height: inherit;
  background: transparent;
  display: block;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 5px 0 5px;
  position: absolute;
  width: 80px;
  z-index: 10;
}

.strength-meter:before {
  left: 70px;
}

.strength-meter:after {
  right: 70px;
}

.strength-meter-fill {
  background: transparent;
  height: inherit;
  position: relative;
  width: 0;
  border-radius: inherit;
  transition: width 0.5s ease-in-out, background 0.25s;
}
.strength-meter-fill[strength='0'] {
  background: transparent;
  width: 0%;
}

.strength-meter-fill[dataStrength='1'] {
  background: darkred;
  width: 28%;
}

.strength-meter-fill[dataStrength='2'] {
  background: orange;
  width: 56%;
}

.strength-meter-fill[dataStrength='3'] {
  background: yellowgreen;
  width: 56%;
}

.strength-meter-fill[dataStrength='4'] {
  background: green;
  width: 100%;
}