.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;           
  }
  .form-popup .h5{
      font-weight: bold;
  }
  .form-popup-sindhi {
    display: none;
    position: fixed;
    bottom: 0;
    left: 9px;
    border: 3px solid #f1f1f1;           
  }
  .form-popup-sindhi .h5{
      font-weight: bold;
  }
  /* Add styles to the form container */
  .form-container {
    max-width: 500px;
    height: auto;
    padding: 10px;
    background-color: white;
  }
  .form-container p{
    font-size: 1.2rem;
    line-height: 2rem;
    padding-bottom:.5rem;
  }
  
  .form-container textarea[id="comment"]{
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password]
   {
    width: 100%;
    padding: 15px;
    margin: 5px 0 12px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus, .form-container textarea[id="comment"]:focus  {
    background-color: #ddd;
    outline: none;
    font-size: 1.3rem;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    margin: 2rem 2rem 0rem 0rem;
    border: none;
    cursor: pointer;
    width: 30%;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }