@gidgreen:
Please add a CSS class name to qa-app-captcha.php, function qa_set_up_captcha_field(), line 88:
'label' => qa_lang_html('misc/captcha_label'),
to something like:
'label' => '<span class="captcha-label">'.qa_lang_html('misc/captcha_label').'</span>',
Reason: It is nearly impossible to target the rows. Okay, you could use nth-child selector but as soon as you add a row, it gets messed up. Easy solution: add a class name.
Thanks, Kai