.container {
    width: 100%;
    height: 520px;
    background: white;
    border-radius: 15px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.6);
    padding: 20px;
    overflow-y: scroll;
    margin: 50px 0 0 0;
}

.container::-webkit-scrollbar {
    display: none;
}

.container form {
    width: 35%;
    border: 3px solid rgb(82, 74, 235);
    border-radius: 10px;
    position: fixed;
    top: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0px 0 0px 350px;
    background: white;
}

.container form input {
    border: none;
    outline: none;
    box-shadow: none;
    text-align: start;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 10px;
}

.container form i {
    width: 30px;
    padding-left: 10px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: 30px 0 0 0;
    padding: 20px 0;
}

.product {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-bottom: 15px;
    margin: 20px 0 0px 50px;
    transition: 0.3s;
}

.product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.product .p-details {
    padding: 20px;
}

.product .p-details h2 {
    font-size: 20px;
    color: #1d1d1d;
}

.product .p-details details button {
    width: 100%;
    background: black;
    color: white;
    padding: 10px;
}

body {
    background: rgb(249, 239, 243);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width:680px) {
    .container {
        width: 90%;
    }

    .product-list {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }

    .product {
        margin-left: 15px;
    }

    .product img {
        width: 80px;
        height: 80px;
    }

    .container form {
        width: 82%;
        position: fixed;
        top: 55px;
        margin-left: 0;
    }
}


/*navbar edit*/
.navbar {
    cursor: pointer;
    border: 2px solid white;
    height: 100px;
    border-radius: 20px 20px 0 0px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: black;
    margin-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
}

.navbar i {
    font-size: 30px;
    background-color: aliceblue;
    border: 1px solid;
    height: 60px;
    width: 60px;
    padding-top: 15px;
    border-radius: 70px;
    box-shadow: 0 1px 10px rgb(255, 255, 255);
}

.navbar i:hover {
    background-color: gray;
    transform: translatey(-15px);
    width: 50px;
    width: 50px;
    font-size: 25px;
    box-shadow: 0 15px 10px rgb(255, 255, 255);
}

/*navbar end*/


/*end*/

@media (max-width: 680px) {
    .navbar {
        height: 80px;
    }

    .navbar i {
        font-size: 20px;
        height: 40px;
        width: 40px;
        padding-top: 10px;
    }

    .navbar i:hover {
        background-color: gray;
        transform: translatey(-15px);
        width: 50px;
        width: 50px;
        font-size: 25px;
        box-shadow: 0 15px 10px rgb(255, 255, 255);
    }
}