/**
Style the background colour on the login page
*/

/* line 4, stdin */

body.login {
  background-color: rgba(189, 189, 186, 0.2);
  color: black;
}

/* line 9, stdin */

body.login .message,
body.login .success,
body.login #login_error {
  border-left: 4px solid black;
}

/* line 18, stdin */

#wp-submit {
  background-color: #000000;
  border: none;
  border-radius: 0;
  box-shadow: 0;
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
  -webkit-transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 32, stdin */

#wp-submit:hover {
  opacity: 0.6;
}

/**
Style the logo on the login page
*/

/* line 41, stdin */

#login h1 a,
.login h1 a {
  background-image: url(/app/themes/guestready/dist/images/login/logo-matzotech.svg);
  height: 60px;
  width: 180px;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

/* line 52, stdin */

body.login #login h1 a,
body.login .login h1 a {
  background: none !important;
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* line 62, stdin */

body.login #login h1 {
  margin: 0 !important;
}

/* line 67, stdin */

input:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 1px #000000 !important;
}

/* line 73, stdin */

a:hover {
  color: black;
}


/*# sourceMappingURL=login.css.map*/