/* CAPTCHA SLIDER */
.slider-captcha-container {
    user-select: none;
    margin-top: 10px;
    margin-bottom: 15px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    background: linear-gradient(90deg, #c2fb7f 0%, #d2dfc3 50%, #c2fb7f 100%);
    background-size: 200% 100%;
    animation: trackFlow 1s linear infinite;
}

@keyframes trackFlow {
    0%   { background-position: 200% 0%; }
    100% { background-position: 0% 0%; }
}

.slider-fill {
    background: #d1f5d3;
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #79b92e;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
    box-shadow: #00000085 0px 0px 5px 2px;
}

.slider-label {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-left: 20px;
    line-height: 51px;
    font-weight: bold;
    color: #555;
    pointer-events: none;
    z-index: 0;
}

.slider-track.captcha-verified {
    background: #d1f5d3;
}

.slider-track.verification-failed {
    background: #cfa2a6;
}

.slider-track.captcha-verified .slider-label {
    color: #2e7d32;
    font-weight: bold;
}