/* ==================== ##Login Page Styles ==================== */
body.login {
  background-color: var(--body-background-color, unset);
  color: var(--rebell-content-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body.login.interim-login {
  background: transparent;
}
body.login.interim-login #login {
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: 0;
}
body.login.interim-login #login #loginform {
  padding-bottom: 4px;
}
body.login.interim-login #login .message, body.login.interim-login #login #login_error {
  margin-bottom: 0;
}
body.login #login {
  background: var(--rebell-form-bg-color);
  border-radius: 0;
  padding: 40px 0 42px;
  margin: 0;
  width: 450px;
}
@media (max-width: 479px) {
  body.login #login {
    width: 90%;
  }
}
body.login #login h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.login #login h1 a {
  display: inline-block;
  background: none;
  text-indent: 0;
  height: auto;
  width: auto;
  overflow: visible;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin-bottom: 0;
  color: var(--rebell-header-font-color);
}
body.login #login h1 a:hover, body.login #login h1 a:focus, body.login #login h1 a:active {
  color: var(--rebell-primary-color);
  box-shadow: none;
}
body.login #login form {
  border: 0;
  box-shadow: none;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 16px;
  background: transparent;
}
@media (max-width: 479px) {
  body.login #login form {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.login #login form > p {
  position: relative;
}
body.login #login form > p:first-child:after {
  -webkit-mask-image: var(--rebell-person-h);
  mask-image: var(--rebell-person-h);
  display: inline-block;
  vertical-align: sub;
  content: "";
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 1em;
  mask-size: 1em;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 1em;
  height: 1em;
  padding: 0;
  box-shadow: none;
  background-color: currentColor;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0;
  transition: 0.4s;
  font-size: 22px;
  position: absolute;
  top: 42px;
  right: 18px;
}
body.login #login form input[type=text],
body.login #login form input[type=password] {
  display: block;
  height: 50px;
  max-width: 100%;
  margin: 0 0 22px 0;
  padding: 0 50px 0 20px;
  border-width: 0;
  border-radius: 0;
  font-family: var(--rebell-content-font-family);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  text-transform: unset;
  color: var(--rebell-content-color) !important;
  background-color: var(--rebell-secondary-color);
  transition: all 0.3s, height 0s;
}
body.login #login form input[type=text]:-webkit-autofill, body.login #login form input[type=text]:-webkit-autofill:hover, body.login #login form input[type=text]:-webkit-autofill:focus, body.login #login form input[type=text]:hover, body.login #login form input[type=text]:focus, body.login #login form input[type=text]:active,
body.login #login form input[type=password]:-webkit-autofill,
body.login #login form input[type=password]:-webkit-autofill:hover,
body.login #login form input[type=password]:-webkit-autofill:focus,
body.login #login form input[type=password]:hover,
body.login #login form input[type=password]:focus,
body.login #login form input[type=password]:active {
  box-shadow: none;
  outline: none;
  color: var(--rebell-content-color) !important;
  background-color: var(--rebell-secondary-color) !important;
  -webkit-transition: background-color 0s ease-in-out 9999s, color 0s ease-in-out 9999s !important;
  transition: background-color 0s ease-in-out 9999s, color 0s ease-in-out 9999s !important;
}
body.login #login form input[type=text]::placeholder,
body.login #login form input[type=password]::placeholder {
  color: var(--rebell-content-color) !important;
}
body.login #login form label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--rebell-content-font-family);
  margin-bottom: 9px;
}
body.login #login form input[type=checkbox] {
  position: relative;
  margin: 1px 0.4rem 0 0;
  border: 0;
  height: auto;
  width: auto;
  line-height: normal;
  min-width: auto;
  box-shadow: none;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
}
body.login #login form input[type=checkbox]:before {
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.1275rem;
  z-index: 1;
  width: 0.56rem;
  height: 0.28rem;
  border: 2px solid #23D49F;
  border-top-style: none;
  border-right-style: none;
  margin: 0;
}
body.login #login form input[type=checkbox]:checked:before {
  transform: rotate(-45deg) scale(1, 1);
}
body.login #login form input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(var(--rebell-tertiary-rgb), 0.2);
  cursor: pointer;
}
body.login #login form .forgetmenot {
  margin-top: 6px;
  margin-bottom: 10px;
}
body.login #login .message, body.login #login #login_error {
  background: transparent;
  border-radius: 0;
  margin-left: 40px;
  margin-right: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #bbbbbb;
  padding: 20px;
  border: 0;
  box-shadow: none;
  margin-top: 21px;
  margin-bottom: -14px;
  border: 1px solid rgba(var(--rebell-tertiary-rgb), 0.2);
}
@media (max-width: 479px) {
  body.login #login .message, body.login #login #login_error {
    margin-left: 20px;
    margin-right: 20px;
  }
}
body.login #login .message strong, body.login #login #login_error strong {
  color: var(--rebell-header-font-color);
}
body.login #login .message a, body.login #login #login_error a {
  color: var(--rebell-header-font-color);
}
body.login #login .message a:hover, body.login #login #login_error a:hover {
  color: var(--rebell-primary-color);
}
body.login #login #login_error {
  background: rgba(255, 58, 58, 0.05);
  border: 1px solid #FF3A3A;
}
body.login #login .wgl_message {
  background: var(--rebell-secondary-color);
  border-radius: 0;
  margin-left: 40px;
  margin-right: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 20px;
  margin-top: 21px;
  margin-bottom: -14px;
  border: rgba(var(--rebell-tertiary-rgb), 0.2);
  font-family: var(--rebell-content-font-family);
}
body.login #login .wgl_message + .message {
  margin-top: 22px;
}
@media (max-width: 479px) {
  body.login #login .wgl_message {
    margin-left: 20px;
    margin-right: 20px;
  }
}
body.login #login .wgl_message ul {
  padding: 0;
}
body.login #login .wgl_message ul li {
  list-style: none;
  margin-bottom: 5px;
}
body.login #login .wgl_message ul li:last-child {
  margin-bottom: 0;
}
body.login #login .wgl_message ul li .copy {
  cursor: pointer;
  position: relative;
  border: 0;
  background: transparent;
  font-weight: 700;
}
body.login #login .wgl_message ul li .copy:before, body.login #login .wgl_message ul li .copy:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  box-sizing: border-box;
}
body.login #login .wgl_message ul li .copy:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
  width: 12px;
  display: block;
  height: 12px;
}
body.login #login .wgl_message ul li .copy:after {
  z-index: 1000;
  padding: 1px 5px;
  background-color: #3A3A3A;
  color: #fff;
  content: attr(data-title);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 12px;
  margin-bottom: -16px;
  border-radius: 0;
  font-family: var(--rebell-content-font-family);
  white-space: nowrap;
}
body.login #login .wgl_message ul li .copy:before, body.login #login .wgl_message ul li .copy:after {
  bottom: calc(100% - 3px);
  left: 100%;
}
body.login #login .wgl_message ul li .copy:before {
  margin-bottom: 0;
  border-top-color: transparent;
  border-right-color: #3A3A3A;
  bottom: calc(100% - 14px);
}
body.login #login .wgl_message ul li .copy.copied:before, body.login #login .wgl_message ul li .copy.copied:after, body.login #login .wgl_message ul li .copy:hover:before, body.login #login .wgl_message ul li .copy:hover:after {
  visibility: visible;
  opacity: 1;
}
body.login #login .wgl_message ul li .copy.copied:before {
  border-right-color: #37d49f;
}
body.login #login .wgl_message ul li .copy.copied:after {
  background-color: #37d49f;
}
body.login #login p.submit {
  clear: both;
}
body.login #login .admin-email__actions-primary a.button {
  margin-bottom: 20px;
  line-height: 48px;
  box-shadow: none;
  color: var(--rebell-button-color-hover);
  border-color: var(--rebell-button-border-hover);
  background-color: var(--rebell-button-bg-hover);
  outline: none;
}
body.login #login .admin-email__actions-primary a.button:hover {
  color: var(--rebell-button-color-idle);
  background: var(--rebell-button-bg-idle);
  border-color: var(--rebell-button-border-idle);
}
body.login #login .admin-email__actions-primary .button,
body.login #login .button-primary {
  float: none;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--rebell-content-font-family);
  color: var(--rebell-button-color-idle);
  background: var(--rebell-button-bg-idle);
  border: 1px solid var(--rebell-button-border-idle);
  padding-left: 40px;
  padding-right: 40px;
  height: 50px;
  border-radius: 0;
  transition: all 0.45s;
}
body.login #login .admin-email__actions-primary .button:hover, body.login #login .admin-email__actions-primary .button:focus, body.login #login .admin-email__actions-primary .button:active,
body.login #login .button-primary:hover,
body.login #login .button-primary:focus,
body.login #login .button-primary:active {
  box-shadow: none;
  color: var(--rebell-button-color-hover);
  border-color: var(--rebell-button-border-hover);
  background-color: var(--rebell-button-bg-hover);
  outline: none;
}
body.login #login .button.wp-hide-pw {
  width: 50px;
  height: 50px;
  outline: none;
  box-shadow: none;
  color: var(--rebell-tertiary-color);
}
body.login #login .button.wp-hide-pw:hover, body.login #login .button.wp-hide-pw:focus, body.login #login .button.wp-hide-pw:active {
  box-shadow: none;
  outline: none;
  border: 0;
}
body.login #login .button.wp-hide-pw .dashicons {
  right: 4px;
  top: 4px;
}
body.login #login .button.wp-hide-pw .dashicons:before {
  -webkit-mask-image: var(--rebell-eye-h);
  mask-image: var(--rebell-eye-h);
  display: inline-block;
  vertical-align: sub;
  content: "";
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 1em;
  mask-size: 1em;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 1em;
  height: 1em;
  padding: 0;
  box-shadow: none;
  background-color: currentColor;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0;
  transition: 0.4s;
  font-size: 20px;
  position: absolute;
  top: -2px;
  right: 0;
}
body.login #login .button.wp-hide-pw .dashicons.dashicons-visibility:before {
  -webkit-mask-image: var(--rebell-eye-slash-h);
  mask-image: var(--rebell-eye-slash-h);
}
body.login #login #nav {
  margin: 0;
  padding: 0 40px;
}
@media (max-width: 479px) {
  body.login #login #nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.login #login #backtoblog {
  margin: 11px 0 0 0;
  padding: 0 40px;
}
@media (max-width: 479px) {
  body.login #login #backtoblog {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.login #login #nav, body.login #login #backtoblog {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
body.login #login #nav a, body.login #login #backtoblog a {
  color: inherit;
  transition: all 0.45s;
}
body.login #login #nav a:hover, body.login #login #backtoblog a:hover {
  color: var(--rebell-primary-color);
}

body.login.interim-login #login #loginform {
  padding-bottom: 14px;
}