/* Sets the loginform and lostpasswordform background. */
body {
  background-image: url("http://www.md-consult.be/resources/wordpress-login-background.png");
  background-size: 1024px 768px;
  background-repeat: no-repeat;
  background-color: #2863B1;
}

/* Replace the Wordpress logo by the MD Consult logo. */
.login h1 a {
  background-image: url("http://www.md-consult.be/resources/wordpress-login.png");
  background-size: 320px 67px;
  width: 320px;
}

/* Applies round corners and shadows on loginform and lostpasswordform. */
#loginform, #lostpasswordform {
  border: 2px solid gray;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 8px 8px 12px #aaa; 
  -webkit-box-shadow: 8px 8px 12px #aaa; 
  box-shadow: 12px 12px 12px #555; 
}

/* Sets height of loginform and lostpasswordform. */
#loginform { height: 180px; }
#lostpasswordform { height: 75px; }

p label {
  font-weight: bold;
}

p.forgetmenot label {
  font-weight: unset;
}

/* Hides the link to return to the loginform on the lostpasswordform. */
p#nav {
    d$isplay: none;
}

/* Applies round corners and shadows on the loginform and lostpasswordform input fields. */
#user_login, #user_pass, #wp-submit {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 8px 8px 12px #aaa; 
  -webkit-box-shadow: 8px 8px 12px #aaa; 
  box-shadow: 3px 3px 3px #555; 
}

/* Applies a padding in the loginform and lostpasswordform input fields. */
#user_login, #user_pass {
  padding: 7px 7px 7px 7px;
  font-size: 12pt;
}

#wp-submit {
  background-color: #2863B1;
}

.login #nav {
  text-align: center;
}

.login #backtoblog {
  margin: 5px;
  text-align: center;
}

.login #nav a, .login #backtoblog a {
  color: white;
  font-weight: bold;
}