/* استایل‌های کپچا */
.bman-captcha-box {
    margin: 15px 0;
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    direction: ltr;
}
.bman-captcha-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.bman-captcha-simple label {
    font-weight: normal;
    color: #333;
}
.bman-captcha-simple input[type="number"] {
    width: 80px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-align: center;
}
.bman-captcha-credit {
    font-size: 10px;
    text-align: center;
    margin-top: 8px;
    color: #888;
}
.bman-captcha-credit a {
    text-decoration: none;
    color: #888;
}
.bman-captcha-credit a:hover {
    color: #000;
}
@media (max-width: 480px) {
    .bman-captcha-simple { flex-direction: column; gap: 8px; }
}