/* Popup Style */
/* .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.904);
    border: 2px solid #706565;
    border-radius:20px;
    padding: 20px;
    z-index: 1000;
    width: 500px;
    box-shadow: 0 0 10px rgb(13, 216, 165);
  }
  .popup-content {
    text-align: center;
  } 
  .close-btn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  } 
  .popup h3 {
    font-size: 18px;
  }
  
  .popup form {
    display: flex;
    flex-direction: column;
  }
  
  .popup input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    background-color: #70656500;
  }
 
  .submit{
    padding: 10px;
    background-color: #28a746e1;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
 
  }
  input:hover{
    box-shadow: 0 0 10px rgb(13, 216, 182);
    background-color: aliceblue;
  }
  .submit:hover{
    box-shadow: 0 0 10px rgb(13, 216, 182);
    background-color: rgb(29, 158, 147);
  } */
