/* CAPTCHA WRAPPER */
.captcha-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

/* Captcha image box */
.captcha-input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 0;
    width: 80px;
    height: 38px;
    border-radius: 6px;
    overflow: hidden;
}

/* Captcha image */
.captcha-input-group-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Captcha input */
.captcha-input-group .form-control {
    flex: 1;
    height: 38px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Captcha error message */
#captcha_error_lead {
    margin-top: 4px;
    font-size: 13px;
}

/* Refresh link */
.captcha-input-group+small {
    display: inline-block;
    margin-top: 3px;
    color: #555;
}

.captcha-input-group+small a {
    color: #007bff;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}