Add Google Tracker Tag to Login Page

The easiest way would be to hook onto the login_footer action and output your GA code:

<?php
add_action( 'login_footer', 'zzMzz_output_ga' );

function zzMzz_output_ga() {
    ?>
<!--
Your Google analytics <script> tag here
-->
    <?php
}