/* 
简化版验证码公共样式文件
*/

/* 验证码容器样式 */
.captcha-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 10px;
}

/* 验证码盒子样式 */
.captcha-box {
    padding: 8px 12px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    min-width: 100px;
    text-align: center;
    color: #333;
    cursor: pointer;
    user-select: none;
}

/* 刷新按钮样式 */
.refresh-captcha {
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
}

.refresh-captcha:hover {
    background: #005a87;
}

/* 响应式调整 */
@media (max-width: 576px) {
    .captcha-container {
        flex-direction: row;
        align-items: center;
    }
    
    .captcha-box {
        min-width: 80px;
        font-size: 14px;
    }
}