/* CAPTCHA Slider Styles - eterCore Theme */
.captcha-container {
    width: 100%;
    margin-bottom: 2rem;
}

.captcha-slider {
    position: relative;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #28344e 0%, #1e1e1e 100%);
    border: 1px solid #5ca0ff33;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.captcha-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.captcha-track.verified {
    background: linear-gradient(90deg, #82aaff 0%, #5ca0ff 100%);
}

.captcha-text {
    color: #86b1fc;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.captcha-success {
    color: #e1e9ff;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.captcha-handle {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #82aaff 0%, #5ca0ff 100%);
    border-radius: 50%;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(130, 170, 255, 0.4), 0 0 20px rgba(130, 170, 255, 0.2);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.captcha-handle:active {
    cursor: grabbing;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(130, 170, 255, 0.5), 0 0 30px rgba(130, 170, 255, 0.3);
}

.captcha-handle svg {
    color: #e1e9ff;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.captcha-handle.verified {
    background: linear-gradient(135deg, #86b1fc 0%, #82aaff 100%);
    box-shadow: 0 4px 12px rgba(130, 170, 255, 0.6), 0 0 30px rgba(130, 170, 255, 0.4);
    left: calc(100% - 45px);
}

/* Deshabilitar botón hasta verificación - eterCore Theme */
.button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #28344e !important;
    color: #86b1fc80 !important;
    border-color: #5ca0ff33 !important;
}

/* Animación de progreso */
@keyframes slide-progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.captcha-slider.dragging::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.2) 0%, transparent 100%);
    transition: width 0.1s ease;
}
