body.login {
  display: flex;
  align-items: center;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: top center;
  height: 100vh;
  overflow: hidden;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto;
}
body.login #login {
  padding: 40px;
  background: #fff;
  box-shadow: 0 16px 64px -43px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
body.login #login #login_error, body.login #login .message {
  border: none;
  width: calc(100% - 48px);
  margin: auto;
}
body.login #login #login_error {
  background: var(--error-100);
  color: var(--error-200);
  margin: 20px auto 0;
}
body.login #login .message {
  background: #f0f8ff;
  color: #086abf;
  margin-top: 20px;
  margin-bottom: 10px;
}
body.login #login h1 a {
  background-image: var(--logo-url) !important;
  background-size: contain !important;
  height: 120px !important;
  max-width: calc(100% - 48px);
  width: 100%;
  background-color: transparent;
  background-position: center;
  box-shadow: none;
  margin-bottom: 0;
}
body.login #login #nav a, body.login #login #backtoblog a {
  color: var(--hex-link) !important;
}
body.login #login .forgetmenot {
  float: none;
  margin-bottom: 20px;
}
body.login #login .forgetmenot label {
  font-weight: normal;
  text-transform: none;
  font-size: 14px;
}
body.login #login .button-primary {
  position: relative;
  background: var(--link);
  border: none;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 3px;
  float: none;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
}
body.login #login .button-primary:hover {
  background: var(--hover);
}
body.login #login form {
  border: 0;
  box-shadow: none;
  padding: 26px 14px 0;
  margin-top: 0;
}
body.login #login form .input {
  background: #fbfbfb;
  border: 0;
  box-shadow: 0 0 0px 2px #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
  padding: 10px;
}
body.login #login form .input:focus {
  box-shadow: 0 0 2px 1px black;
  border-bottom: none;
}
body.login #login form label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
body.login #login #nav {
  text-align: center;
}
body.login #login #backtoblog {
  display: none;
}