  /* RESET */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html,
  body {
      height: 100%;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
  }

  /* REMOVE ALL SIDE SPACE */
  .container-fluid {
      padding-left: 0 !important;
      padding-right: 0 !important;
  }

  .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
  }

  /* MAIN SECTION */
  .login-section {
      min-height: 100vh;
  }

  /* CARD */
  .login-card {
      min-height: 100vh;
  }

  /* LEFT SIDE */
  .login-left {
      min-height: 100vh;
      background:
          linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
          url('https://images.unsplash.com/photo-1584515933487-779824d29309?q=80&w=1200') center/cover no-repeat;
      color: #fff;
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .brand {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
  }

  .login-left h3 {
      font-weight: 600;
      margin-bottom: 15px;
  }

  .login-left p {
      opacity: .9;
      line-height: 1.7;
  }

  /* LEFT SOCIAL */
  .left-social {
      margin-top: 30px;
  }

  .left-social a {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      margin-right: 10px;
      color: #fff;
      transition: .3s;
  }

  .left-social a:hover {
      background: #18b368;
  }

  /* RIGHT */
  .login-right {
      background: #f7f9fc;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 30px;
  }

  .login-box {
      width: 100%;
      max-width: 420px;
  }

  .login-title {
      font-weight: 600;
      margin-bottom: 20px;
  }

  /* INPUT */
  .form-control {
      height: 50px;
      border-radius: 12px;
  }

  /* BUTTON */
  .btn-login {
      background: #18b368;
      border: none;
      height: 50px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
  }

  .btn-login:hover {
      background: #0B2D4F;
      color: #fff;
  }

  /* SOCIAL LOGIN */
  .social-login {
      margin-top: 20px;
  }

  .social-login button {
      width: 50px;
      height: 46px;
      border-radius: 10px;
      margin-bottom: 12px;
      font-weight: 500;
  }
  .btn-connect{
    color: #000;
    border: 1px solid #0B2D4F;
    margin-left: 10px;
  }
  .btn-connect:hover{
    color: #18b368;
    border: 2px solid #18b368;
  }
.login-logo{
    justify-content: center;
    text-align: center;
    margin: auto;
    width: 100px;
}
.brand-a{
    text-decoration: none;
    color: inherit;
}
  /* MOBILE */
  @media(max-width:992px) {
      .login-left {
          display: none;
      }

      .login-right {
          padding: 40px 20px;
      }
  }