/******************************************************************

Stylesheet: Login Stylesheet

Stylesheet used only for the login page.

******************************************************************/
body {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f3f3f3+50,ededed+51,ffffff+100;White+Gloss+%232 */
background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 51%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.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 #F00;
}
.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:#9d2236;
	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:#666;
	border:none;
}
/*********************************
LINK STYLES
*********************************/
.login #backtoblog a:hover, .login #nav a:hover, .login h1 a:hover {
	color:#9d2236;
}
/*********************************
MESSAGE STYLES
*********************************/
.login #login_error, .login .message, .login .success {
	border-left:4px solid #9d2236;
}