/**
 * Custom Login Style
 * File: assets/css/custom-login-style.css
 *
 * Enqueued on wp-login.php with the handle: custom-login-style
 * Loaded AFTER core's "login" stylesheet, and BEFORE the inline CSS the
 * settings page generates. Write your permanent rules here.
 *
 * Handy selectors:
 *   body.login            - the whole page
 *   .login h1 a           - the logo
 *   .login form           - the white form box
 *   .login form .input    - username / password fields
 *   .wp-core-ui .button-primary - the Log In button
 *   .login #nav, .login #backtoblog - the links under the form
 *   .login .message, .login #login_error - notices
 */

/* Example: uncomment to use a background image instead of a flat color.
body.login {
	background-image: url( '../img/login-bg.jpg' );
	background-size: cover;
	background-position: center center;
}
*/

.login form {
	border-radius: 6px;
	box-shadow: 0 2px 12px rgba( 0, 0, 0, 0.08 );
}

.login .button-primary {
	border-radius: 4px;
}
