html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevent full-page scrolling */
    font-family: sans-serif;
  }
  
  .full-body {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* No scroll on full container */
  }
  
  .left-body {
    width: 70%;
    height: 100%;
    background-color: var(--primary-color, #007bff); /* Example primary color */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    overflow: hidden; /* No scroll on left side */
  }
  
  .right-body {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* Only the right side scrolls */
  }
  
  /* Hide unwanted elements from the layout */
  .breadcrumbs-area,
  .navbar,
  .footer {
    display: none !important;
  }

  .space {
    display: none !important;
}

  
  /* Logo Styles */
  .login-big-logo {
    height: 360px;
    width: 360px;
  }
  
  .login-normal-logo {
    height: 180px;
    width: 180px;
  }
  
  /* Input styling */
  .input-line {
    display: flex;
    background-color: var(--input-bg, #f1f1f1);
    border-radius: 20px;
    align-items: center;
  }
  
  .input-line input {
    height: 40px;
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 0 20px;
  }
  
  .input-line > div {
    height: 40px;
    width: 60px;
    background-color: var(--blue-color, #0056b3);
    border-radius: 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Responsive adjustments */
  @media only screen and (max-width: 1230px) {
    .full-body {
      flex-direction: row;
      /* Keep the same row layout if desired, or adjust as needed */
    }
  
    .mobile-menu-bg {
      display: none;
    }
    
    .left-body {
      display: none;
    }

    #nav_logo_2 {
      display: none;
    }

    .login-normal-logo {
      margin-top: 50px;
    }

    .right-body {
      width: 100%;
    }
  
    .login-big-logo {
      height: 250px;
      width: 250px;
    }
  }
  