 
.form-prelaoder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #052003f6;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
 
.form-prelaoder .loader {
  width: 120px;
  height: 22px;
  border-radius: 40px;
  color: #13A50B;
  border: 2px solid;
  position: relative;
}
.form-prelaoder .loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  width: 25%;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: currentColor;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
    50% {left:100%;transform: translateX(calc(-100% - 4px))}
}