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

Stylesheet: Login Stylesheet

This stylesheet is loaded is only on the login page. This way you can style
the login page. It won't affect any other page, admin or front-end.

Make sure functions/login.php is activated in your functions.php file.

This stylesheet is turned off by default.

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

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

body.login {
	background-color: #191919;
	display: flex;
	align-items: center;
	justify-content: center;
}

#login {
	padding: 0;
}	

#login a {	
	color: #F7ba57 !important;
}

/* Change the login logo */
.login h1 a {
	background: url(../../images/login-logo.png) no-repeat top center;
	background-size: contain;
	width: 100%;
	height: 32px;
	text-indent: -9999px;
	overflow: hidden;
	padding-bottom: 0;
	display: block;
}

.login form {
	background: #191919;
	border: solid 1px #191919;
	color: #ffffff;
}

body form .input {

}

/* Login Button Style */
#wp-submit {
	background: #F7ba57;
    border-color: #F7ba57;
    color: #191919;
    text-decoration: none;
    text-shadow: none;
	font-weight: bold;
}
