/* custom_login.css */
/* Change background image and font family */
body {
  background-image: url(background.jpg);
  background-size: cover;
  font-family: Arial,Verdana,sans-serif;
}
 
/* Change Width and Height of Logo Image + Add Custom Image File */
.login h1 a {
  background-image: url(logo.png);
  width: 100px;
  height: 100px;
  background-size: 100px 100px;
}
 
/* Add a few changes to the color and style of form itself */
.login label {
  color: #454545;
  display: block;
  margin-bottom: 1em;
  font-weight: bold;
}
 
.login form .input {
  font-weight: normal;
}
 
.login #backtoblog a, .login #nav a, .login #byline, .login #byline a {
  color: #ffffff;
  text-decoration: none;
}

.login #backtoblog a:hover, .login #nav a:hover, .login #byline a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.login #byline {
  margin-top: 1em;
  text-align: center;
}
 
.wp-core-ui .button-primary {
  background: #D06828;
}