body {
    font-family: 'Roboto', sans-serif;
  }
  
  .left-section {
    background-color: white;
  }
  
  .login-container {
    max-width: 520px;
    width: 100%;
    align-items: center;
  }
  
  .logo-img {
    width: 250px;
    height: 80px;
  }
  
  .login-text {
    color: #4C9CAF;
  }
  
  .text-para {
    color: #8F8F8F;
    font-size: 15px;
  }
  
  .custom-btn {
    width: 150px;
    height: 50px;
    border-radius: 60px;
    border: 1px solid;
    background-color: #ffffff;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: #007bff;
    color: white;
  }
  
  .captcha-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #dc2626;
  }
  
  .input-group-text {
    background-color: white;
    border-left: none;
    cursor: pointer;
  }
  
  .inner-frame {
    background-color: #FFA569;
    border: 1px solid white;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 300px;
    height: 405px;
  }
  
  .inner-frame img {
    max-width: 350px;
    height: 400px;
    border-radius: 20px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: -35px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .login-container {
      margin-top: 1.5rem;
      padding: 0 1rem;
    }
  
    .custom-btn {
      width: 100%;
      height: 45px;
      margin-top: 0.5rem;
    }
  
    .captcha-text {
      font-size: 1rem;
    }
  
    .logo-img {
      width: 150px;
      height: auto;
    }
  
    .inner-frame img {
      max-width: 280px;
    }
  }
  
  @media (max-width: 576px) {
    .right-section {
      display: none !important;
    }
  
    .logo-section {
      text-align: center;
      margin-bottom: 1rem;
    }
  }
  