/******************************************************************

Stylesheet: Login Stylesheet

This stylesheet is loaded (if admin.php is setup in your
functions file) on the login page. This way you can style
the login page. It won't affect any other page, admin or front-end.

For more info, check out the codex:
http://codex.wordpress.org/Creating_Admin_Themes

******************************************************************/
/* the form box */
/*
This is the Wordpress logo in the admin area.
You'll have to load your own images and mess
with the width and height.
*/
#login h1 a, .login h1 a {
    background-image: url(../images/logo@2x.png);
    height: 185px;
    width: 280px;
    background-size: 280px 185px;
    background-repeat: no-repeat;
}

body {
    background-image: url(../images/rplp-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.login h1 {
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 32px;
    border-bottom-right-radius: 0px;
}

.login form {
    margin-top: 20px;
    margin-left: 0;
    padding: 26px 24px 46px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 1px 3px rgba(0,0,0,.13);
    border-radius: 32px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.wp-core-ui .button-group.button-large .button,
.wp-core-ui .button.button-large {
    padding: 0 32px 2px;
}

.wp-core-ui .button-primary {
    background-color: #43aacd;
    transition: .3s all ease-in-out;
}

.login #nav {
    margin: 20px 0 0;
    background-color: rgba(255,255,255,0.7);
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 13px;
    border-top-right-radius: 0px;
}

.login #backtoblog {
    display: none;
}

.login #login_error, .login .message {
    border-left: none;
    padding: 12px;
    margin-left: 0;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.7);
    box-shadow: none;
    margin-top: 20px;
    border-radius: 10px;
}
