* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  
  body {
    background-color: #fff;
    font-family: 'Poppins', sans-serif  ;
    overflow-x: hidden;
  }
  
  article,
  aside,
  details,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-decoration: none;
  }
  
  img {
    border: none;
  }
  
  *:focus {
    outline: none;
  }
  
  .clearfix::after {
    content: "";
    display: table;
    clear: both;
  }
  
  .bg-illustration {
    position: relative;
    height: 100vh;
    width: 50%;
    background: #009688;
    background-size: cover;
    float: left;
    display: flex;
    
    
  }
  .bg-illustration img {
    width: 40%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    height: auto;
    margin: auto !important;
   border-radius: 0px;
  }

  .footer-text{
    color: #0b0b0b;
    position: fixed;
    bottom: 35px;
    left: 20%;
    font-size: 18px;
  }
  
  @-webkit-keyframes bgslide {
    from {
      left: -100%;
      width: 0;
      opacity: 0;
    }
    to {
      left: 0;
      width: 1194px;
      opacity: 1;
    }
  }
  
  @keyframes bgslide {
    from {
      left: -100%;
      width: 0;
      opacity: 0;
    }
    to {
      left: 0;
      width: 1194px;
      opacity: 1;
    }
  }
  
  
  .login {
    max-height: 100vh;
    overflow-Y: auto;
    float: left;
    margin: 0 auto;
    width: calc(100% - 50%);
  }
  .login .container {
    width: 50%;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  .login .container h1 {
    margin-top: 100px;
    font-size: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
  }
  .login .container .login-form {
    margin-top: 50px;
  }
  .login .container .login-form form {
    display: -ms-grid;
    display: grid;
  }
  .login .container .login-form form input {
    font-size: 16px;
    font-weight: normal;
    background: rgba(57, 57, 57, 0.07);
    margin: 12.5px 0;
    height: 68px;
    border: none;
    padding: 0 30px;
    border-radius: 10px;
  }

  .login .container .login-form form input::placeholder {
  text-align: center;
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif !important;
  }

  .login .container .login-form form button[type=submit] {
    background: #ED1C24;
    border: none;
    margin-top:0;
    margin-bottom: 20px;
    width: 100%;
    height: 58px;
    text-transform: uppercase;
    color: white;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
  }
  .login .container .login-form form button[type=submit]:hover::after {
    opacity: 1;
  }
  .login .container .login-form form button[type=submit]::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    right: 0;
    bottom: 0;
    background: #2B3990;
   cursor: pointer;

  }
  .login .container .remember-form {
    position: relative;
    margin-top: -30px;
  }
  .login .container .remember-form input[type=checkbox] {
    margin-top: 9px;
    width: 35px;
    margin-top: 30px;
    margin-right: 35%;
  }
  .login .container .remember-form span {
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    top: 50px;
    color: #3B3B3B;
    margin-left: -30%;
  }



  .login-bottom-text{
    font-size: 18px;
    margin-top: 35px;
    margin-bottom: 50px;
  }

  .social-media-box{
    margin-top: 20%;
    padding-bottom: 30px;
  }

  .social-media-box img{
    padding-right: 10px;
  }

  .login .container .login-logo{
    width: 35%;
  }
  
  @media only screen and (min-width: 1024px) and (max-width: 1680px) {
    .bg-illustration {
      width: 50%;
      -webkit-animation: none;
              animation: none;
    }
  
    .login {
      width: 50%;
    }
  }
  /* Display 12", iPad PRO Portrait, iPad landscape */
  @media only screen and (max-width: 1024px) {
    body {
      overflow-x: hidden;
    }
  
    @-webkit-keyframes slideIn {
      from {
        left: -100%;
        opacity: 0;
      }
      to {
        left: 0;
        opacity: 1;
      }
    }
  
    @keyframes slideIn {
      from {
        left: -100%;
        opacity: 0;
      }
      to {
        left: 0;
        opacity: 1;
      }
    }
    .bg-illustration {
      float: none;
      background: #e3e3e6;
      background-size: cover;
      -webkit-animation: slideIn 0.8s ease-in-out forwards;
              animation: slideIn 0.8s ease-in-out forwards;
      width: 100%;
      height: 190px;
      text-align: center;
    }
    .bg-illustration img {
      width: 50%;
      height: auto;
      margin: 20px auto !important;
      text-align: center;
    }

    .login {
      float: none;
      margin: 0 auto;
      width: 100%;
    }
    .login .container {
      -webkit-animation: slideIn 0.8s ease-in-out forwards;
              animation: slideIn 0.8s ease-in-out forwards;
      width: 85%;
      float: none;
    }
    .login .container h1 {
      font-size: 25px;
      margin-top: 40px;
    }
    .login .container .login-form {
      margin-top: 35px;
    }
    .login .container .login-form form input {
      height: 45px;
    }
    .login .container .login-form form button[type=submit] {
      height: 45px;
      margin-top: 15px;
    }
    .login .container .login-form .remember-form {
      position: relative;
      margin-top: -14px;
    }
    .login .container .login-form .remember-form span {
      font-size: 16px;
      margin-top: 45px;
      top: inherit;
    }
  

    .login .container .login-form form input::placeholder {
     
      font-size: 18px;
    
      }
  
  }


  @media only screen and (min-width:768px) and (max-width: 1024px) {
    .bg-illustration img{
      width: 30%;
      margin: 10px auto !important;
      padding: 10px 0px;
    }

    .social-media-box {
      margin-top: 10%;
      padding-bottom: 30px;
  }

  .login .container .login-logo {
    width: 15%;
}

.login .container .remember-form input[type=checkbox] {
  width: 30px;
  margin-right: 12%;
}

.login .container .remember-form span{
  margin-left: -10%;
}

.login .container .login-form form input{
  height: 65px;
}

.login .container .login-form .remember-form span{
  
  margin-top: 55px;

}


  }