<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/******************************************************************
Stylesheet: Login Stylesheet
For more info, check out the codex:
http://codex.wordpress.org/Creating_Admin_Themes
******************************************************************/
body.login {
  background-size: cover;
  transition: opacity 3s ease 0s;
  opacity: 0;
}
#login {
  position: relative;
  top: 200px;
  width: 465px !important;
  padding: 25px 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: top 0.5s ease 0.2s;
  opacity: 0;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.6);
}
#login form {
  background: transparent;
}
#login a {
  color: #fff !important;
}
#login a:hover {
  color: #1093c5 !important;
}
/* the form box */
/*
This is the Wordpress logo in the admin area.
You'll have to load your own images and mess
with the width and height.
*/
.login h1 a {
  display: block;
  width: 326px;
  height: 67px;
  padding-bottom: 15px;
  text-indent: -9999px;
  background: url(../images/logo.png) no-repeat center;
  /* make sure to replace this! */
  overflow: hidden;
  filter: invert(1);
}
#loginform {
  border-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 30px;
  background: transparent;
  box-shadow: none;
}
.forgetmenot {
  position: absolute;
  bottom: 185px;
}
form {
  margin-left: 8px;
  border: none;
  border-radius: 0px;
  padding: 26px 24px 46px;
  font-weight: normal;
  box-shadow: none;
}
body form .input {
  width: 97%;
  margin-top: 2px;
  margin-right: 6px;
  margin-bottom: 16px;
  border: 0px solid rgba(26, 26, 26, 0.5);
  padding: 8px !important;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
  font-weight: 200;
  font-size: 24px;
  color: #fff;
  -webkit-text-fill-color: #fff !important;
  background-color: rgba(77, 77, 77, 0.5) !important;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
  outline: none;
  opacity: 0.8;
}
body form .input:focus {
  outline: none;
}
.login label {
  color: #fff;
}
body form input:-webkit-autofill {
  background-color: red !important;
  -webkit-box-shadow: 0 0 0px 1000px #1F2121 inset !important;
}
/*
You'll have to override some of the default styles
but since we're referencing the id, it should be easy.
*/
#wp-submit {
  background: #1093c5;
  box-shadow: 0px 3px 0px #0c7096;
  border: none;
  border-radius: 0px;
  text-shadow: none;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 23px;
  margin-bottom: 20px;
}
/* login button*/
.login #login_error, .login #nav, .login #backtoblog {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
}
.login #nav, .login #backtoblog {
  padding: 10px;
}
#nav {
  position: absolute;
  bottom: -5px;
  left: 15px;
  transition: all 0.3s ease 0.2s;
  opacity: 0;
}
#backtoblog {
  position: absolute;
  bottom: -21px;
  right: 16px;
  opacity: 0;
  transition: all 0.3s ease 0.3s;
}
.indexel-info {
  padding: 9px 25px;
  color: #fff;
  line-height: 32px;
  position: relative;
  bottom: -100px;
  opacity: 0;
  transition: all 0.3s ease 0.35s;
}
.indexel-info .logo {
  width: 100px;
  height: 23px;
  background: transparent url("../core/images/login/logo.png") left top no-repeat;
  display: block;
  float: right;
}
.indexel-info.active {
  bottom: 0;
  opacity: 1;
}
body.login.active {
  opacity: 1;
}
body.login.active #login {
  opacity: 1;
  top: 11%;
}
body.login.active #nav {
  bottom: 146px;
  opacity: 1;
}
body.login.active #backtoblog {
  opacity: 1;
  bottom: 160px;
}
body.login.active .privacy-policy-link {
  position: relative;
  top: 20px;
}
/*********************
MOBILE
*********************/
@media only screen and (max-width: 600px) {
  #login {
    width: 100% !important;
  }
}
</pre></body></html>