/**
 * Estilos para el captcha deslizante
 */
.admin-captcha-container {
    width: 100%;
    height: 50px;
    background-color: #f5f5f5;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.admin-captcha-prompt {
    text-align: center;
    line-height: 50px;
    color: #666;
    font-size: 14px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.admin-captcha-slider {
    width: 50px;
    height: 50px;
    background-color: #5cb85c;
    position: absolute;
    left: 0;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s;
    z-index: 2;
}
