body.login {
    background: #FFF;
}

add_filter( 'login_headerurl', 'custom_login_header_url' );
function custom_login_header_url($url) {
return 'https://schippany.com/';
}

add_filter('login_headertitle', 'custom_login_header_title');
function custom_login_header_title($title) {
return 'Schippany';
}

.login login{
	background: #ffffe0; 	
}

/*Logo*/
.login h1 a {
    background-image: url('../images/logo.png');
    background-size: 320px 71px;
    width: 320px;
    height: 71px;
}

.login .message {
    font-family: Arial, sans-serif;
    background: #ffffe0;
    border: #e6db55;
    color: #000000;
}


.login #login_error {
    /*...*/
}

.login form {
    background: #FFFF00;
    color: #333333;
    border-width: 0.0625rem;
    box-shadow: 1px;
    -webkit-box-shadow: none;
}

.login label {
    /*...*/
}

.login input {
    /*...*/
}

.login .forgetmenot label {
    /*...*/
}

.login input.button-primary {
    font-family: 'OpenSansRegular', Arial, sans-serif;
    text-transform: uppercase;
    background: #FFFFFF;
    background-image: none;
    border:none;
    border: #000000 solid 1px;
    -webkit-box-shadow: none;
    box-shadow: none;
	color: #000000;
    /*...*/
}
.login input.button-primary:hover,
.login input.button-primary:focus {
    background-image: none;
    border:none;
    text-shadow: #000000 1px 1px 1px;
	background: #000000;
    -webkit-box-shadow: none;
    box-shadow: none;
    /*...*/
}

.login #nav,
.login #backtoblog {
    /*...*/
}

