
  /* Modal background */
  .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }



  /* Modal content */
  .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
  }

  .modal-content h2 {
    color: #D90A2C;
  }

  .modal-content label {
    color: #1B2D6E;
  }

  /* Close button */
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  /* Form inputs */
  form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }

  form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  form button {
    width: 100%;
    padding: 10px;
    background-color: #D90A2C;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }

  form button:hover {
    background-color: #b00724;
  }
