Today I installed reCAPTCHA to get rid of spam. The installation was really simple and I noticed really fast that my IP Blacklist plugin had a little time to relax. But I noticed that the login page look a bit odd. I googled a bit but didn’t find anybody whit the same problem. Also nobody answered in the google group about my question. So I researched myself and found the wordpress tutorial to change your login page.
I added the following to my functions.php, just to increase the size of the login page to 400px, and voila, better.
function custom_login_size() { echo '<style type="text/css">#login {width: 400px;}</style>'; } add_action('login_head', 'custom_login_size');
I hope this can help you with your problems… 🙂