@import url('https://fonts.googleapis.com/css?family=Lato');

body,
.login label,
.login #nav a,
.login #backtoblog a{
    font-family: 'Lato', sans-serif;
    color: white;
    font-size: 15px;
}

body.login {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-color: white;
    background-image: url(../images/background.svg);
    background-size: initial;
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.login #backtoblog a, .login #nav a, .login h1 a{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover{
    color: #375f90;
}

.login h1 a {
    -webkit-background-size: 100%;
    background-size: 100%;
    height: 100px;
    width: 90%;
    margin: 0 auto;
}
#login{
    padding: 8% 0 0;
    margin: auto;
    width: 320px;
    display: none;
}

.login-footer {
    margin: auto;
    width: 180px;
    padding-top: 10px;
}

.login-footer img{
    width: 100%;
    height: auto;
}

/* buttons */
.login form .input, .login input[type=text]{
    display: block;
    width: 100%;
    padding: 6px 12px;
    margin: 8px 6px 16px 0;
    font-size: inherit;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #5faac6;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.login form .input:focus{
    border-color: #66c5e9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.wp-core-ui .button-group.button-large .button,
.wp-core-ui .button.button-large,
.login form input[type=submit]{
    color: white;
    background-color: rgba(255,255,255,0.2);
    border-color: #00acd2;
    padding: 6px 16px;
    font-size: 17px;
    line-height: 1.3333333;
    border-radius: 6px;
    height: auto;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid inherit;
    text-shadow: none;
    box-shadow: none;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wp-core-ui .button-group.button-large .button:hover,
.wp-core-ui .button.button-large:hover,
.login form input[type=submit]:hover{
    color: #fff;
    background-color: #00acd2;
    border-color: #87e9ff;
}

/* end buttons */

/* message */
.login div#login form#loginform,
.login #lostpasswordform,
.login #login_error,
.login .message
{
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    background: rgba(255,255,255,0.2);
}

.login #login_error,
.login .message{
    border-left: 8px solid #00d2c6;
}

/* end message */

@media (min-width: 1200px) {
    body.login {
        background-position: center center;
    }

    #login{
        width: 470px;
        position: relative;
        padding-top: 120px;
    }

    form#loginform,
    form#lostpasswordform{
        padding: 50px 70px 60px;
    }

    .login #login_error,
    .login .message{
        padding: 16px 62px;
    }

    .login h1 a {
        margin: 0 auto 25px;
        height: 120px;
        width: 75%;
    }

    .login-footer {
        margin: auto;
        width: 230px;
    }
}