/* CAPTCHA Matematico - Stili */
.captcha-container {
    background: #f2f2f2;
    border-radius: 4px;
    padding: 10px;
    margin: 0px;
    width: 330px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.captcha-question {
    color: #495057;
    text-align: left;
    padding: 10px;
    margin: 0;
    border-radius: 0px;
    flex: 1;
}

.captcha-input {
    width: 80px !important;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 0px;
    padding: 10px;
    margin: 0;
    display: inline-block;
    flex-shrink: 0;
}

.captcha-input:focus {
    border-color: gray;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.captcha-help {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.captcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}