/* Full-page background with SVG pattern */
.auth-bg {
    background: url('/assets/img/curved-images/curved5-small.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

/* Card Styling */
.card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff; /* Light background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
}

.form-control {
    font-size: 16px;
}

.btn-primary {
    font-size: 16px;
    padding: 10px;
}

/*Loading balls*/
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 15px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #1a84ad;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            left: 8px;
            top: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            left: 8px;
            top: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            left: 32px;
            top: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            left: 56px;
            top: 8px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}





.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20%;
    gap: 10px;
    margin-bottom: 20px;
}

#loader1 {
    width: 15px;
    height: 20px;
    background-color: red;
    border-radius: 6px;
    animation: loading1 1s 0s infinite ease-in;
}

#loader2 {
    width: 15px;
    height: 20px;
    background-color: rgb(91, 248, 0);
    border-radius: 6px;
    animation: loading2 1s 0.3s infinite ease-in;
}

#loader3 {
    width: 15px;
    height: 20px;
    background-color: rgb(0, 208, 255);
    border-radius: 6px;
    animation: loading3 1s 0.5s infinite ease-in;
}

@keyframes loading1 {
    0% {
        transform: scaleY(1);
        transition: 0.5s;
    }

    50% {
        transform: scaleY(2.3);
        transition: 0.5s;
        background-color: rgb(3, 175, 255);
    }

    100% {
        transform: scaleY(1);
        transition: 0.5s;
    }
}

@keyframes loading2 {
    0% {
        transform: scaleY(1);
        transition: 0.5s;
        background-color: red;
    }

    50% {
        transform: scaleY(2.3);
        transition: 0.5s;
    }

    100% {
        transform: scaleY(1);
        transition: 0.5s;
    }
}

@keyframes loading3 {
    0% {
        transform: scaleY(1);
        transition: 0.5s;
        background-color: rgb(255, 0, 0);
    }

    50% {
        transform: scaleY(2.3);
        transition: 0.5s;
    }

    100% {
        transform: scaleY(1);
        transition: 0.5s;
        background-color: rgb(3, 175, 255);
    }
}


/* HTML: <div class="loader-progress"></div> */
.loader-progress {
    width: 180px;
    height: 12px;
    background: linear-gradient(90deg, #0000, orange) left -50px top 0/50px 20px no-repeat lightblue;
    animation: l2 1s infinite linear;
    position: fixed;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
}

@keyframes l2 {
    100% {
        background-position: right -50px top 0;
    }
}
