@keyframes animated-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.slider-border {
    background: linear-gradient(270deg, #d0c4c4, #f9ecb7, #9fe8b7, #1e2831, #7b801f);
    background-size: 1000% 1000%;
    animation: animated-border 8s ease infinite;
    padding: 3px;
    border-radius: 0.75rem;
}
