/******************************************************************

Stylesheet: Login Stylesheet

Stylesheet used only for the login page.

******************************************************************/
body {
	background-color:#ddd;
}
.login form {
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}
.login h1 a {
	background: url(../images/login-logo.png) no-repeat top center;
	width: 300px;
	height: 125px;
	text-indent: -9999px;
	overflow: hidden;
	padding-bottom: 15px;
	display: block;
}
.login form .input:focus, .login input[type="text"]:focus {
	border:1px solid #333;
}
.login form .input, .login form input[type="checkbox"], .login input[type="text"] {
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
}
/*********************************
BUTTON STYLES
*********************************/
.wp-core-ui .button-primary {
	background-color:#666;
	border:none;
	box-shadow:none;
	text-shadow:none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary.hover, .wp-core-ui .button-primary:focus, .wp-core-ui .button-primary:hover {
	background-color:#999;
	border:none;
}
/*********************************
LINK STYLES
*********************************/
.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover {
	color:#333;
}
/*********************************
MESSAGE STYLES
*********************************/
.login #login_error, .login .message, .login .success {
	border-left:4px solid #999;
}