/**
  * Kwaaijongens login page
  *
  * @version 1.0.0
  */
  
/* Logo */

.login h1 a {
	background-image: url('../images/logo.png');
	width: 100%;
	background-size: 230px;
}

/* Background */

body.login {
	background-image: url('../images/login-bg.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

body.login:before {
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Form */

body.login form {
	box-shadow: 0 1px 10px 5px rgba(0,0,0,.13);
}

body.login form .button {
	background: #1f1f1c;
	color: #FFF;
	border: 0px;
	text-shadow: none;
	box-shadow: none;
}


body.login form .button.hover,  
body.login form .button:hover {
	background: #d11519;
	color: #FFF;
	box-shadow: none;
}

body.login form .button.focus, 
body.login form .button:focus {
	background: #af1013;
	color: #FFF;
	box-shadow: none;
}

body.login form .button.button-secondary {
	
}

/* Misc */

body.login #backtoblog a:hover, 
body.login #nav a:hover, 
body.login h1 a:hover,
body.login input[type=checkbox]:checked:before {
	color: #d11519;
}