.loader-login {
  max-height: 60px;
  display: none;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #20202A;
  min-height: 100vh;
}

.loader-content {
  text-align: center;
}

.loader-image {
  width: 150px; /* Adjust the size as needed */
  height: auto;
}

.loader-text {
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
}

.loader-bar {
  width: 100%;
  max-width: 300px;
  height: 10px;
  background-color: #444;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}

.loader-bar-progress {
  width: 50%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: -50%;
  animation: move 2s linear infinite;
  border-radius: 5px; /* Ensure the inner bar has rounded corners */
}

@keyframes move {
  0% {
      left: -50%;
  }
  50% {
      left: 100%;
  }
  100% {
      left: 100%;
  }
}