.login-wrapper {
  height: 90vh;
}


.login-wrapper img {
  object-fit: cover;
  height: 100%;
}

.login-form h4 {
  font-size: 2.5rem;
  font-weight: 600;

}

.login-form input {
  /* margin-bottom: 25px; */
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 5px 15px;
  border: none;
  border: 0.5px solid #dedede;
  border-radius: 8px;
}

.login-form a {
  text-decoration: none;
}

.login-form button {
  /* background-color: #a6a6a6; */
  border: none;
  padding: 8px;
  /* border-radius: 10px; */
  color: white;
}

.auth-wrapper {
  /* background: linear-gradient(to bottom, black, #000000, #1f24be, #2A162D); */
  background: linear-gradient(-130deg, black, #2b162f, #35345c, black);
  /* background: linear-gradient(to bottom, #ff0000, #00ff00, #0000ff); */

  /* background-size: 400% 400%; */
  animation: gradient 10s ease-in-out infinite;
}

@keyframes gradient {
  0% {
    background: linear-gradient(-130deg, black, #2b162f, #35345c);
  }

  25% {
    background: linear-gradient(-175deg, black, #2b162f, #35345c, black);
  }

  50% {
    background: linear-gradient(-200deg, black, #2b162f, #35345c, black);
  }

  75% {
    background: linear-gradient(-175deg, black, #2b162f, #35345c, black);
  }

  100% {
    background: linear-gradient(-130deg, black, #2b162f, #35345c, black);
  }
}

.eye-field span img {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 3%;
  top: 25%;
}

.help-block-error {color:#a94442;
  margin-bottom: 1px!important; 
}
.has-error .form-control {border-color:#a94442;
}

.term_errors .help-block-error{
  display: inline!important;
}