in the server redirect behavior, set the redirect to the login page to pass a querystring variable, such as:
login.php?notAuthenticated=true
then add an if statement on the login page:
<?php if(isset($_GET['notAuthenticated'] && $_GET['notAuthenticated'] == "true" ) { ?>
you will not be able to login to this site until your registration has been approved.
<?php } ?>