body{
    font-family: 'Exo';
}

#login{
    padding-top: 9%;
}

.login h1 a{
    background-image: url('img/login/ga-logo.png');
    height: 42px;
    width: 320px;
    background-size:100%;
}

.login h1 a.premium{
    background-image: url('img/login/ga-logo-premium.png');
    height: 70px;
    width: 320px;
    background-size:100%;
}

.login #backtoblog a, .login #nav a{
    color: #000000;
}

.login form{
    background-color: #209bd7;
    padding-bottom: 26px;
}

.login label{
    color: #FFFFFF;
    font-size: 16px;
}

.login form .forgetmenot label{
    font-size: 13px;
}

#login form p.submit{
    clear: both;
}

#wp-submit{
    background-color: #1b6592;
    width: 100%;
    margin: 20px 0 0;
    height: 38px;
    line-height: 36px;
    font-size: 1.3em;
    text-transform: uppercase;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}