/* Change background color and font family */
body {
  background: #fff;
  color: #222222;
}
 
/* Change Width and Height of Logo Image + Add Custom Image File */
.login h1 a {
  background-image: url(/wp-content/themes/ovaltwo-child/assets/img/logo-dark.png);
  width: 300px;
  height: 113px;
  background-size: 300px 113px;
}
 
/* Add a few changes to the color and style of form itself */
.login label {
  color: #666;
}

#loginform {
	-moz-box-shadow: 0px 0px 10px #aaa;
	-webkit-box-shadow: 0px 0px 10px #aaa;
	box-shadow: 0px 0px 10px #aaa;
}

.wp-core-ui .button-primary {
	background: #666;
	border: 1px solid #000;
	transition: .4s;

}

.wp-core-ui .button-primary:hover {
	background: #fff;
	color: #666;
	border: 1px solid #000;

}