/* 新增弹窗验证码样式 */
.popup-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-question {
    font-size: 18px;
    font-weight: bold;
    min-width: 120px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ddd;
}

.captcha-input {
    flex: 1;
    max-width: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.refresh-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.refresh-btn:hover {
    background: #e9ecef;
}

.captcha-result {
    margin-top: 8px;
    font-size: 14px;
    min-height: 20px;
    color: #e74c3c;
}