.drag-captcha {
    border: 1px solid #d7dde5;
    border-radius: 6px;
    padding: 12px;
    background: #f8fafc;
    margin: 20px 0;
    user-select: none;
}
.drag-captcha-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
.drag-captcha-track {
    position: relative;
    height: 48px;
    border-radius: 6px;
    background: #e9eef5;
    overflow: hidden;
    touch-action: none;
}
.drag-captcha-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: #d8f5e2;
    transition: width .15s ease;
}
.drag-captcha-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 6px;
    background: #198754;
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    cursor: grab;
    z-index: 2;
}
.drag-captcha-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #52606d;
    font-size: 14px;
    pointer-events: none;
}
.drag-captcha.is-complete .drag-captcha-track {
    background: #e2f7eb;
}
.drag-captcha.is-complete .drag-captcha-text {
    color: #198754;
    font-weight: 700;
}