@charset "UTF-8";

/* loader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff;
  display: table;
  text-align: center;
}

.loader {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 200px;
  height: 200px;
}



#loader2 {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#loader2 img {
  /* z-index: 5; */
  width: 50px; /* Adjust the size as needed */
  height: 50px; /* Adjust the size as needed */
}

/* Error Message display */

#successMessage{
  display: none;
  color: rgb(6, 176, 43) !important;
  font-weight: 60px;
  font-size: 14px;
  padding: 7px;
}

#errorMessage{
  display: none;
  color: red !important;
  font-weight: 60px;
  font-size: 14px;
  padding: 7px;
}


.strength-bar {
    display: none;
    width: 100%;
    height: 8px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}
.strength-bar span {
    display: block;
    height: 100%;
    transition: width 0.3s ease;
}
.strength-bar .weak {
    width: 25%;
    background-color: red;
}
.strength-bar .moderate {
    width: 50%;
    background-color: orange;
}
.strength-bar .strong {
    width: 100%;
    background-color: #7cb041;
}
.error-message {
    color: red;
    margin-top: 5px;
    font-size: 14px;
}


@keyframes loader-rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
