/*-------------------------------------------------------------------------------*/
/* WordPress Login Screen Styles ------------------------------------------------*/
/*-------------------------------------------------------------------------------*/

.login form {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

		  
.login form .input, 
.login form input[type=checkbox], 
.login input[type=text] {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
      -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
          transition: border linear 0.2s, box-shadow linear 0.2s;
}

.login form .input:focus, 
.login form input[type=checkbox]:focus, 
.login input[type=text]:focus {
	border-color: #FEB300;
	
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(254, 179, 0, 0.6);
	 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(254, 179, 0, 0.6);
		  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(254, 179, 0, 0.6);
}

.wp-core-ui .button-primary {
	background: #FEB300;
	border-color: #D59600;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3),0 1px 0 rgba(0,0,0,.15);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3),0 1px 0 rgba(0,0,0,.15);
	color: #fff;
	text-decoration: none;
}

.wp-core-ui .button-primary:hover {
	background: #2C3846;
	border-color: #000;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.4),0 1px 0 rgba(0,0,0,.15);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.4),0 1px 0 rgba(0,0,0,.15);
	color: #fff;
	text-decoration: none;
}

.login #backtoblog a, 
.login #nav a {
	text-decoration: none;
	color: #2C3846;
}

.login #backtoblog a:hover, 
.login #nav a:hover {
	color: #2C3846;
	text-decoration: underline;	
}