/* Change background color and font family */
body {
  background: #fff;
  font-family: Arial,Verdana,sans-serif;
}
 
/* Change Width and Height of Logo Image + Add Custom Image File */
.login h1 a {
  width: 150px;
  height: 75px;
  background-size: 150px 75px;
}
 
/* Add a few changes to the color and style of form itself */
.login label {
  color: #333;
  display: block;
  margin-bottom: 1em;
  font-weight: bold;
}
 
.login form .input {
  font-weight: normal;
  border-radius: 7px;
}
.login form {
  background: #eea236;
  border-radius: 7px;
}

p.message {
  background: #333;
  border-radius: 7px;
}
 
.login #backtoblog a, .login #nav a {
  color: #333;
}
 
.wp-core-ui .button-primary {
  background: #333;
  border-radius: 7px;
  text-transform: uppercase;
}

.wp-core-ui .button-primary:hover{
    color: #eea236;
    border: solid 1px #eea236;
    background: #333;
}