  /*//////////////////////////////////////////////////////////////////
  [ RESTYLE TAG ]*/
  
  * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      font-family: Poppins-Regular, sans-serif;
  }
    
  /*---------------------------------------------*/
    input {
        outline: none;
        border: none;
    }
    
    
    input::-webkit-input-placeholder { color: #999999;}
    input:-moz-placeholder { color: #999999;}
    input::-moz-placeholder { color: #999999;}
    input:-ms-input-placeholder { color: #999999;}
    
    /*---------------------------------------------*/
    button {
        outline: none !important;
        border: none;
        background: transparent;
    }
    
    button:hover {
        cursor: pointer;
    }
    
  /*//////////////////////////////////////////////////////////////////
  [ utility ]*/
  
  .m-b-20 {margin-bottom: 20px;}
  .p-t-27 {padding-top: 27px;}
  .w-full {width: 100%;}
  
  
  /*//////////////////////////////////////////////////////////////////
  [ login ]*/
  
  
  .container-login {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #3c8cbc;
  }
  .wrap-login {
  width: 1170px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
  
  }
  /*==================================================================
  [ login more ]*/
  .img {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
  }
  
  .img::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
  }
  
  /*==================================================================
  [ Form ]*/
  
  .logo{
      margin: auto;
      padding-bottom: 80px;
  }
  
  .login-form {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 65px 239px 65px;
  }
  
  /*------------------------------------------------------------------
  [ Input ]*/
  
  .wrap-input {
    width: 100%;
    position: relative;
  }
  
  .input {
    display: block;
    width: 100%;
    background: transparent;
    font-family: Poppins-Regular, sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 0 25px;
  }
  
  input.input {
    height: 55px;
  }
  
  /*------------------------------------------------------------------
  [ Button ]*/
  .container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .login-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background: #3c8cbc;
  
    font-family:'Montserrat', sans-serif;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .login-form-btn:hover {
    background: #333333;
  }
  
  
  
  /*------------------------------------------------------------------
  [ Responsive ]*/
  
  @media (max-width: 992px) {
    .login-form {
      width: 45%;
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .img {
      width: 55%;
    }
  }
  
  @media (max-width: 768px) {
    .login-form {
      width: 100%;
    }
  
    .img{
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .login-form {
      padding-left: 15px;
      padding-right: 15px;
      padding-top: 150px;
    }
  
  }
  
  
  
  
  
  