.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.loader {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: rgba(106, 114, 251, 0)
    }

    33% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: rgba(106, 114, 251, 0.33)
    }

    66% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: rgba(106, 114, 251, 0.66)
    }

    100% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: rgba(106, 114, 251, 1)
    }
}