.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: scroll;
    z-index: 9999999;
    }
    /* Modal content */
    .modal-content {
    border-top:5px solid #ff1f8e ;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 800px;
    max-width: 100%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    }
    .modal-content input, textarea{
       width: 100%;
       background-color: #fff;
       padding:8px;
       border-radius: 4px;
       color: #000;
       border:1px solid grey;
    }
    .modal-content .side-btn{
       width: 100%;
       background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
       margin-top:10px;
       color: #fff;
       padding:12px;
       border-radius:30px;
       border:none;
    }
    /* Modal header */
    .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    /* Close button */
    .close-btn {
    font-size: 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    }
    /* Form styling */
    #modal-form input[type="text"],
    #modal-form input[type="email"],
    #modal-form input[type="password"]{
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    }
    #modal-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    }
    #modal-form input[type="submit"]:hover {
    background-color: #218838;
    }