.slide-captcha {
    width: 100%;
    min-width: 220px;
    user-select: none;
}

.slide-captcha__track {
    position: relative;
    height: 42px;
    border: 1px solid #d5dde6;
    border-radius: 21px;
    background: #f4f7fb;
    overflow: hidden;
}

.slide-captcha__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d9f7df 0%, #bdf0c7 100%);
    transition: width 0.2s ease;
}

.slide-captcha__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    color: #6a7685;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    pointer-events: none;
    transition: color 0.2s ease;
}

.slide-captcha__handle {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #117a37;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 3px 12px rgba(16, 55, 95, 0.2);
    cursor: grab;
    z-index: 2;
}

.slide-captcha__handle:active {
    cursor: grabbing;
}

.slide-captcha.is-verified .slide-captcha__track {
    border-color: #77c48a;
    background: #eefaf1;
}

.slide-captcha.is-verified .slide-captcha__text {
    color: #117a37;
    font-weight: 600;
}

.slide-captcha.is-verified .slide-captcha__handle {
    background: #1bb14c;
    color: #fff;
}
