:root {
  --the-global-typography-color: #262c32;
  --the-global-orange: #ED6F04;
  --the-global-orange-hover: #dc752d;
  --the-global-font-1: Inter, sans-serif;
  --the-global-font-2: Figtree, sans-serif;
}
body.login {
  color: var(--the-global-typography-color);
  font-family: var(--the-global-font-1);
  font-size: 16px;
}
body.login a {
  color: var(--the-global-orange);
  font-weight: 600;
  /* better contrast */
}
body.login input[type="text"],
body.login input[type="password"] {
  border: none;
}
body.login :is(
        input[type="text"], 
        input[type="password"],
        input[type="checkbox"],
        input[type="submit"],
        button.button) {
  border-radius: 0px;
}
body.login :is(
        input[type="text"], 
        input[type="password"]) {
  background-color: #e8f0fe;
}
body.login :is(
        input[type="submit"]:hover, 
        input[type="submit"]:focus,
        input[type="submit"]:active) {
  background-color: var(--the-global-orange-hover);
}
body.login input[type="submit"],
body.login .button {
  background-color: var(--the-global-orange);
  padding: 15px 30px !important;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 13px !important;
  color: white;
  float: none;
  width: 100%;
}
body.login .button.wp-generate-pw {
  background-color: #fff;
  border-color: var(--the-global-orange);
  border-width: 2px;
  color: var(--the-global-typography-color);
  border-style: solid;
}
body.login label {
  font-family: var(--the-global-font-2);
  font-weight: 600;
}
body.login form {
  background-color: #ffffff !important;
  border: none !important;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}
body.login #login form p {
  margin-bottom: 0.5rem;
}
body.login .message,
body.login .notice,
body.login .success,
body.login #login_error {
  /* #login_error is from Limit Login Attempts Plugin */
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 26px 24px;
  background-color: #fff !important;
  color: var(--the-global-typography-color);
  border: none !important;
}
body.login #backtoblog,
body.login #nav {
  display: none;
}
