.uruk-human-check {
    margin-top: 22px;
}

.uruk-human-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

#uruk-human-state {
    color: #f4c542;
}

.uruk-slider {
    --slider-progress: 0%;
    position: relative;
    height: 46px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: rgba(7, 19, 29, .72);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .22);
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
}

.uruk-slider:focus-visible {
    outline: 2px solid #f4c542;
    outline-offset: 3px;
}

.uruk-slider-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--slider-progress);
    background: linear-gradient(90deg, rgba(244, 197, 66, .18), rgba(244, 197, 66, .42));
}

.uruk-slider-copy {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    letter-spacing: .01em;
    pointer-events: none;
}

.uruk-slider-thumb {
    position: absolute;
    top: 3px;
    left: clamp(3px, calc(var(--slider-progress) - 20px), calc(100% - 43px));
    width: 40px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: #f4c542;
    color: #15212c;
    font-size: 21px;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .35);
    pointer-events: none;
}

.uruk-slider.is-loading,
.uruk-slider[aria-disabled="true"] {
    cursor: wait;
    opacity: .68;
}

.uruk-slider.is-verified {
    border-color: rgba(57, 191, 119, .8);
    cursor: default;
}

.uruk-slider.is-verified .uruk-slider-fill,
.uruk-slider.is-verified .uruk-slider-thumb {
    background: #39bf77;
}

.uruk-slider.is-error {
    border-color: #e25555;
}

.uruk-human-help {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
}

#uruk-login-submit:disabled {
    cursor: not-allowed;
    opacity: .42;
    filter: grayscale(.5);
}

@media (prefers-reduced-motion: reduce) {
    .uruk-slider-thumb,
    .uruk-slider-fill { transition: none !important; }
}
