 @font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.ttf') format('woff2');
    font-weight: 600;
    font-style: normal;
  }
  @font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.ttf') format('woff2');
    font-weight: 700;
    font-style: normal;
  }

    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background: #653b3b;
    }
    .login-container {
      width:100%;
      margin: 40px auto;
      background: #fff;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .login-left, .login-right {
      flex: 1;
      min-width: 320px;
    }
    .login-left {
      padding: 40px 120px;
    }
    .bg-clr{
      background:#FDEFC8;}

    .logo{
      margin-top: 20px;
      margin-bottom: 10px;}
    .logo-top {
      display: none;
      text-align: center;
      margin-bottom: 20px;
    }
    .logo-top img {
      max-height: 70px;
      margin-bottom: 10px;
    }
    .logo-top h3 {
      font-size: 18px;
      font-weight: 700;
      color: #002060;
    }
    .login-left h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 30px;
      color:#555252;
      
    }
    .toggle-box {
    display: flex;
    align-items: center;   /* vertically centers everything */
    gap: 10px;             /* spacing between items */
    margin-bottom: 20px;
    width: 300px;}
   
    .login-label {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;   /* keeps "Login By:" in one line */
    color:#8E8B8B;
}

    .toggle-btn {
      flex: 1;
      padding: 12px 0;
      font-weight: 500;
      font-size: 15px;
      cursor: pointer;
      background: #f1f1f1;
      border-radius: 8px;
      text-align: center;
    }
    .toggle-btn.active {
      background: #646568;
      color: #fff;
    }
    .form-control {
      margin-bottom: 16px;
      height: 45px;
      font-size: 14px;
      border-radius: 6px;
      padding-left: 20px;
    }
    .password-wrapper {
      position: relative;
    }
    .password-wrapper .toggle-password {
      position: absolute;
      top: 50%;
      right: 12px;
      transform: translateY(-50%);
      cursor: pointer;
      color: #A0A1A2;
    }
    .captcha-box {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 15px;
    }
    .captcha-box .code {
      background: #e9e9e9;
      padding: 8px 20px;
      font-size: 25px;
      font-weight: 600;
      border-radius: 6px;
      width:200px;
      color: #555252;
    }
    .captcha-box button {
      border: none;
      background: transparent;
      font-size: 20px;
      cursor: pointer;
      color: #199bff;;
    }
    .btn-login {
      width: 100%;
      background: #646568;
      color: #fff;
      font-weight:500;
      padding: 10px;
      font-size: 23px;
      border-radius: 6px;
    }
    .btn-login:hover{ 
      background: #1d54f0; 
      color: #fff;}
    .forgot-link {
      display: block;
      margin-top: 15px;
      font-size: 14px;
      color: #00599F;
      text-align: center;
      text-decoration: none;
    }
    .partners {
      background: #F2F7FF;
      border-radius: 6px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 25px;
      padding: 10px;
      flex-wrap: wrap;
    }
    .partners img {
      max-height: 65px;
      margin: 6px;
    }
    .login-right {
      background:#FDEFC8;
      text-align: center;
    }
    .right-img img{width:100%;}
    .login-right h3 {
      font-weight: bold;
      color: #002060;
      font-size: 28px;
    }
    .form-control::placeholder {
      color: #A0A1A2;
      opacity: 1;
      font-size: 14px;
    }
    .captcha-class{margin-top: 0px; margin-bottom: -0px;}

    /* Responsive */
    @media(max-width: 991px) {
      
      .login-container {
        flex-direction: column;
        margin: 11px 0;
      }
      .toggle-box{width:100%;}
      .logo-top {
        display: block;
      }
      .login-right {
        order: 2;
        height: 220px;
        background-position: center bottom;
      }
      .login-left {
    padding: 40px 10px;
}
  .logo-top h2{font-size: ;}
      .login-right div {
        display: none;
      }
      .login-left h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 30px;
      text-align: center;
    }
    .logo-top h3 {
    font-size: 24px;
}
.partners img {
    max-height: 35px;
    margin: 6px;
}
    }

    @media(max-width: 1024px) {
    .login-left, .login-right {
    flex: 1;
    min-width: 100%;
}
.logo-top {
        display: block;
    }
    .img-clr{display: none;}
    }