.privacy-form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    width: 70% !important;
    margin-left: 15% !important;
    margin-bottom: 10%;
    padding: 20px;
    font-size: small;
    border: 3px solid rgb(0, 116, 199);
    z-index: 9;
    background-color: white !important;
    opacity: 1;
  }
  
  /* Add styles to the form container */
  .privacy-form-container {
    max-width: 100%;
    padding: 10px;
    background-color: blue;
  }
  
  /* Full-width input fields */
  .privacy-form-container input[type=text], .privacy-form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .privacy-form-container input[type=text]:focus, .privacy-form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .privacy-form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .privacy-form-container .cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .privacy-form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }