body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    background-color: #f8f9fa;
    overflow: hidden;
  }
  .login-signup-container {
    font-family: 'Montserrat';
    height: 100vh;
    display: flex;
  }
  .image-section {
    flex: 1;
  }
  .form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 100vh;
    
  }
  .form-select{
    padding: 4px 10px !important;
    font-size: 14px;

  }
  .form-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 3px;
  }
  .form-subtitle {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
  }
  .form-label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
    
  }

  .form-control {
    border-radius: 5px !important;
    padding: 0.4rem;
    line-height: 1;
    font-size: 14px;
  }
  .eye-btn{
    right: 10px;
    top: 6px;
    z-index: 10000;
  }
  .btn-primary, .btn-primary:hover {
    background-color: #FF9700;
    border: none;
    border-radius: 10px;
    padding: 5px;
    font-weight: bold;
  }
  .btn-primary:hover {
    background-color: #FF9700;
  }
  .login-signup-container .btn:active{
    background-color: #FF9700;
  }
  label{
    color: #6c757d;
  }
  .social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
    width: 100%;
    max-width: 400px;
  }
  .social-buttons button {
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
  }
  .social-google, .social-google:hover {
    background-color: #ffffff;
    color: #1B1B1B;
    border: 1px solid #BEBEBE;
  }
  .social-facebook ,.social-facebook:hover{
    background-color: #385898;
    color: #ffffff;
    border: 1px solid #385898;
  }
  .social-apple, .social-apple:hover {
    background-color: #fff;
    color: #1B1B1B;
    border: 1px solid #BEBEBE;
  }
  .login-link {
    font-size: 14px;
    margin-top: 10px;
  }
  .login-link a {
    color: #FF9700;
    font-weight: bold;
    text-decoration: none;
  }
  .logo-img{
    width: 220px;
  }
  .login-link a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    body{
      overflow: auto;
    }
    .image-section{
      display:none;
    }
    .form-section{
      height: auto;
    }
    .login-signup-container{
      flex-direction: column;
    }
  }
  .image-outline{
    border: 1px dashed #6c757d;
  }
  .choose-text{
    font-size: 12px;
  }
  input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
