.loginAnimation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --line-border-fill: #3498db;
  --line-border-empty: #e0e0e0;
  --progress-zIndex: -1;
}

.contaienr {
  text-align: center;
}

.form-control.is-invalid,
.form-control.is-valid,
.was-validated .form-control:invalid,
.form-control:valid {
  background-image: none !important;
}


/* .eye {
  position: relative;
  right: 100px;
  left:90%;
  top: -32%;
  transform: translateY(-50%);
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 15px;
  float: right;
  margin-left: -25px;
  margin-top: -25px;
  right: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
} */

.eyeStyle {
  /* font-size: 15px;
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer; */
  font-size: 15px;
  float: right;
  margin-left: -25px;
  margin-top: -27px;
  right: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.confirmPass {
  white-space: nowrap;
}

.password-popup1 {
  position: absolute;
  top: 75%;
  right: 0%;
  z-index: 1000;
  display: none;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  max-width: 100%;
  position: relative;
  width: 350px;
}

.submitInfo,
.prev,
.next {
  display: none;
}

.progress-container::before {
  background-color: var(--line-border-empty);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: var(--progress-zIndex);
  display: none;
}


.progress-container.visible::before {
  display: block;
  /* Display when the 'visible' class is added */
}

.progress {
  background-color: var(--line-border-fill);
  height: 4px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s ease;
  width: 0%;
  z-index: var(--progress-zIndex);
}

.circle {
  align-items: center;
  background-color: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 50%;
  color: #999;
  display: flex;
  height: 30px;
  justify-content: center;
  transition: 0.4 ease;
  width: 30px;
}

.circle.active {
  border-color: var(--line-border-fill);
}

.btn {
  background-color: var(--line-border-fill);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  margin: 5px;
  padding: 8px 30px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus {
  outline: 0;
}

.btn:disabled {
  background-color: var(--line-border-empty);
  cursor: not-allowed;
}

.current {
  background-color: #3498db;
  color: white;
  font-weight: 600;
}



#passwordRules li {
  list-style-type: none;
  white-space: nowrap;
}

.passwordPopup {
  position: absolute;
  top: 0px;
  left: 0vw;
  z-index: 1000;
  display: none;
}