/* Custom class for the logo */
.login h1 a {
  background-image: url('images/Logo_header.png');
background-position: left top;
            padding-bottom: 10px;
            background-size: 320px 52px;
        color: #000000;
	height: 80px;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.3em;
	margin: 0 auto 25px;
	padding: 0;
	text-decoration: none;
	width: 320px;
	text-indent: -9999px;
	outline: none;
	overflow: hidden;
	display: block;
}

/* Custom class for the login screen background*/
body.login {
  background-color: white;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

/* Custom class for the login text*/
.login label {
  font-size: 14px;
  color: #555555;
}

.login input[type="text"]{
  background-color: #ffffff;
  border-color:#556C11;
  -webkit-border-radius: 4px;
  color: #556C11; 
  font-size: 14px;
}

.login input[type="password"]{
  background-color: #red;
  border-color:#dddddd;
  -webkit-border-radius: 4px;
}

/* Custom class for the Submit button */
.login .button-primary {
  width: 100%;
  float:left;
  background-color:#556C11!important;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-border-radius: 4px;
  border: 0px solid #E69019;
}

.login .button-primary:hover {
  background-color:#E69019!important;
   color: #FFFFFF;
   font-size: 14px;
  -webkit-border-radius: 4px;
  border: 0px solid #E69019;
}

.login .button-primary:active {
  background-color:#E69019!important;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-border-radius: 4px;
 border: 3px solid #556C11;
}

/* Custom class for the link color in the footer*/
body.login div#login p#nav a,
body.login div#login p#backtoblog a {
    color: #556C11!important; /* Your link color. */
}

/* Custom class for the message above the login form*/
.login .message {
  font-size: 14px;
  color: #555555;
  border-left: 4px solid #556C11;
  padding-top: 10px;
  padding-bottom: 20px;
}