.loader-bg {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color:#0072E6;
}

.loader-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.brand {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 0.3rem;
}

.brand-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: white;
  margin: 0;
}

.loading-infinite {
  height: 0.375rem;
  width: 120%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  overflow: hidden;
}

@keyframes loading-infinite {
  from {
    left: -39%;
  }
  to {
    left: 99%;
  }
}

.loading-infinite-loader {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background-color: white;
  position: relative;
  animation: loading-infinite 1.2s linear 0s infinite alternate;
}