/* GG2GM Custom Login Styles */
body.login {
  background: #f6f6f7;
}

#login {
  width: 380px !important;
}

#login h1 a {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 280px;
  height: 80px;
  margin-bottom: 12px;
}

#loginform,
#lostpasswordform,
#registerform {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
}

#loginform p label,
#lostpasswordform p label,
#registerform p label {
  color: #2d2d2d;
  font-weight: 600;
}

.wp-core-ui .button-primary {
  background: #e87722;         /* brand orange */
  border-color: #e87722;
  text-shadow: none;
  box-shadow: none;
}

.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
  filter: brightness(0.95);
  border-color: #e87722;
}

.login #backtoblog a,
.login #nav a {
  color: #2d2d2d !important;
  text-decoration: none;
}

.login #backtoblog a:hover,
.login #nav a:hover {
  color: #e87722 !important;
}

/* Hide the "← Go to {Site}" link under the form */
.login #backtoblog { display: none !important; }

@media (max-width: 480px) {
  #login {
    width: 100% !important;
    padding: 20px;
  }
}

