  body.login {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-family: "nimbus-sans", sans-serif;
    background-image: url('../assets/img/login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  body.login .password-input-wrapper{
    width: 100%;
  }
  body.login:after {
    content: '';
    background: #004D8F;
    opacity: .5;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
  }

  body.login #login {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 0px;
    opacity: 1;
    border-radius: 5px;
    width: 460px;
    max-width: calc(100% - 52px);
  }
  /* @media only screen and (max-width: 767px) {
    body.login #login {
      width: calc(100% - 52px);
      transform: scale(0.7);
      top: 38%;
      left: 7.5%;
    }
  } */

  label[for='user_login'], label[for='user_pass'] {
    color: #C6C6C6;
    font-size: 18px;
    font-weight: 400;
    transition: color .3s ease;
    position: relative;
  }

  @media only screen and (max-width: 767px) {
    label[for='user_login'], label[for='user_pass'] {
      font-size: 14px;
    }
  }

  label[for='user_login'] svg, label[for='user_pass'] svg {
    position: absolute;
    top: 8px;
    right: 0px;
  }

  label[for='user_login'].activated, label[for='user_pass'].activated, label[for='user_login']:hover, label[for='user_pass']:hover {
    color: #007BE4;
  }

  label[for='user_login'].activated #user_login, label[for='user_pass'].activated #user_pass, label[for='user_login']:hover #user_login, label[for='user_pass']:hover #user_pass {
    border-bottom-color: #007BE4;
  }

  body.login #loginform {
    background: none;
    margin-top: 0px;
    background: white;
    border-radius: 5px 5px 0 0px;
  }

  #user_login, #user_pass {
    border: none;
    border-bottom: 1px solid #C6C6C6;
    text-shadow: none;
    box-shadow: none;
    background: none;
    font-weight: 300;
    color: #646464;
    font-size: 16px;
    padding-bottom: 10px;
    transition: all .3s ease;
  }

  #wp-submit {
    background: #0D2B45;
    color: white;
    transition: background .3s ease;
  }

  #wp-submit:hover {
    background: #007BE4;
  }

  body.login #login h1 {
    display: none;
  }

  body.login #login #backtoblog {
    display: none;
  }

  body.login #login .forgetmenot {
    display: none;
  }

  body.login .login-header {
    position: relative;
    z-index: 1;
    height: 45px;
    background: #0D2B45;
    color: white;
    font-size: 20px;
    line-height: 45px;
    font-weight: 700;
  }

  body.login .login-header .header-inner {
    /*padding: 0 20px;*/
    padding-left: 20px;
    max-width: 1300px;
    /*width: 100%;*/
    margin: auto;
  }

  body.login #nav {
    height: 33px;
    background: #E8E8E8;
    margin-top: 0px;
    border-radius: 0 0 5px 5px;
  }

  body.login #nav a {
    color: #929292;
    text-align: right;
    width: 100%;
    display: block;
    padding-top: 6px;
    transition: color .3s ease;
  }

  body.login #nav a:hover {
    color: #666;
    text-decoration: none;
  }

  body.login .message, body.login #login_error {
    color: #222;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 5px;
    box-shadow: none;
    background: white;
  }

  body.login .message a, body.login #login_error a {
    color: #222;
  }

  .login-logo {
    position: relative;
    width: 260px;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 40px;
  }

  @media (max-width: 767px) {
    .login-logo {
      margin-top: 0px;
      margin-bottom: 10px;
    }
  }

  .login-logo svg {
    margin-left: 94px;
    margin-bottom: 15px;
  }

  .logo-title-above {
    font-family: "nimbus-sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 34px;
  }

  @media (max-width: 768px) {
    .login-logo svg {
      height: 50px;
      margin-bottom: 5px;
    }
    .logo-title-above {
      font-size: 18px;
      line-height: 24px;
      width: 200px;
      margin: auto;
    }
  }

  .mobile-login-header {
    display: none;
  }

  @media (max-width: 768px) {
    .mobile-login-header {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .desktop-login-header {
      display: none;
    }
  }

  @media (max-width: 768px) {
    #login {}
  }

  @media (max-width: 768px) {
    body.login {
      overflow: hidden;
    }
  }
