body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-container,.signup-container {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
  }
  .signup-container{
    display: none;
  }
  .lgn-txt{
    width:95%;
    margin:10px 0 0 0;
  }
  .lgn-btn{
    /* width: 100%; */
    margin-top: 16px;
  }
  .app-name {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .button-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    width: 300px;
  }
  
  .btn-login, .btn-signup {
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    width: 100px;
height: 41px;
color: #282424;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: normal;
line-height: normal;
border-radius: 7px;
  }
  
  .btn-login {
background: #6CDE8C;
font-weight: 700;
  }
  
  .btn-signup {
background: #D9D9D9;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
  }
  
  /* .login-form input {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  } */
/*   
  .btn-submit {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  } */
  
  .forgot-password {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #2196F3;
    text-decoration: none;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  