/* Font-Setup */
/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
  /* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
  /* Variables */
  /* Button Variants */
  body.login #login p#nav a {
    position: relative;
  }
  body.login #login p#nav a::after {
    border-bottom: 2px solid #e09900;
    bottom: -8px;
    content: "";
    left: 0;
    position: absolute;
    transition: all 300ms ease;
    width: 100%;
  }
  body.login #login p#nav a:hover::after {
    transform: scale(1.5,1);
  }
  
  html {
    height: auto !important;
  }
  
  body.login {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(224, 153, 0, 0.2)), url("../img/login-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: column nowrap;
    height: auto !important;
    min-height: 100vh;
    justify-content: space-between;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  body.login #login {
    max-width: 375px;
    padding: 8% 0 80px;
    width: 90%;
    height: 100vh;
    background: #7a7a7a82;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px!important;
    margin: 0;
  }
  body.login #login > h1 a {
    background-image: url("../img/Login-Logo-Omazing.png");
    height: 82.5px;
    margin-bottom: 60px;
    overflow: visible;
    padding-bottom: 10px;
    position: relative;
    width: 75%;
    background-size: 70%;
    pointer-events: none;
  }
  body.login #login > h1 a::after {
    bottom: -15px;
    color: #fff;
    content: "Omazing - Online Marketing";
    display: block;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 400;
    height: 40px;
    left: 50%;
    letter-spacing: 0.5px;
    position: absolute;
    text-align: center;
    text-indent: 0;
    transform: translatex(0%) translatex(-50%);
    width: 250px;
    text-transform: uppercase;
  }
  body.login #login form {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 30px;
  }
  body.login #login form .dashicons-hidden {
    color: #e09900!important;
  }
  body.login #login form label {
    color: #fff;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 700;
  }
  body.login #login form input[type=text], body.login #login form input[type=password] {
    background: transparent;
    border: 1px dashed #e09900;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    color-scheme: dark;
  }
  body.login #login form input[type=text]:focus, body.login #login form input[type=password]:focus, body.login #login form input[type=checkbox]:focus {
    border-color: none!important;
    box-shadow: none!important;
    outline: none!important;
  }
  body.login #login form input[type=text]:focus, body.login #login form input[type=password]:focus {
    background-color: #e0990052!important;
  }
  body.login #login form input[type=checkbox] {
    background: transparent;
    border-radius: 0;
    border: 1px solid #e09900;
    color: #fff;
    height: 18px;
    width: 18px;
  }
  body.login #login form input[type=checkbox]:checked::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M14.83 4.89l1.34.94-5.81 8.38H9.02L5.78 9.67l1.34-1.25 2.57 2.4z' fill='%23e09900'/%3E%3C/svg%3E")!important;
  }
  body.login #login form p.forgetmenot {
    float: none;
    margin-top: 5px;
  }
  body.login #login form p.forgetmenot label {
    font-size: 14px;
    font-weight: 400;
    vertical-align: -1px;
  }
  body.login #login form p.submit {
    margin-top: 30px;
    text-align: center;
  }
  body.login #login form p.submit input[type=submit] {
    background: #e09900;
    border-radius: 26px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: none;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8em;
    padding: 0.3em 1.6em !important;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  body.login #login form .dashicons-visibility::before {
    color: #fff;
  }
  body.login #login p#nav {
    margin-top: 20px;
    padding: 0;
    text-align: center;
  }
  body.login #login p#nav a {
    color: #fff;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 700;
  }
  body.login #login p#backtoblog, body.login #login div.privacy-policy-page-link {
    display: none;
  }
  body.login footer.nxt-login-footer {
    background: #fff;
    transform: translatey(0%) translatey(100%);
    width: 100%;
  }
  body.login footer.nxt-login-footer .nxt-login-footer-menu {
    display: block;
    margin: 20px auto;
  }
  body.login footer.nxt-login-footer .nxt-login-footer-menu ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style: none;
  }
  body.login footer.nxt-login-footer .nxt-login-footer-menu ul li {
    padding-left: 3%;
    padding-right: 3%;
  }
  body.login footer.nxt-login-footer .nxt-login-footer-menu ul li a {
    color: #333;
    font-family: "Poppins";
    font-size: 18px;
    text-decoration: none;
  }
  body.login #login_error, body.login .message, body.login .success {
    background-color: transparent;
    border-left: 3px solid #e09900;
    box-shadow: none;
    color: #fff;
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    margin: 0 auto 30px;
    padding: 15px 20px;
    outline: none;
  }
  body.login .message a {
    color: #e09900;
  }
  body.login div.clear {
    display: none;
  }
  #login form p {
    color: #dcdcde;
  }
  #login form p .wp-generate-pw {
    background: transparent;
    color: #e09900;
    border-color: #e09900;
  }
  
  @media only screen and (max-width: 400px) {
    body.login footer.nxt-login-footer .nxt-login-footer-menu ul li {
      padding-bottom: 7px;
      text-align: center;
      width: 94%;
    }
  }

  .language-switcher {
    display: none!important;
  }