/* 点击验证码样式 */
.slide-captcha-container {
    width: 100%;
    margin: 10px 0;
}

.slide-captcha-box {
    position: relative;
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.slide-captcha-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.slide-captcha-box:active {
    transform: translateY(0);
}

.slide-captcha-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    pointer-events: none;
    z-index: 2;
}

.slide-captcha-box.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    cursor: default;
    animation: successPulse 0.6s ease;
}

.slide-captcha-box.success:hover {
    transform: none;
}

.slide-captcha-box.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    animation: shake 0.5s;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}
