*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height:100vh;
    background-color: beige;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.container{
    width: 375px;
    height: 520px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: scroll;
}
.container form{
    width: 100%;
    border-radius: 4px;
    border: 1px solid blue;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.container::-webkit-scrollbar{
    display: none;
}
.container form input{
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    font-weight: 600;
    padding: 8px 10px;
    font-size: 16px;
}
.details{
    padding: 5px;
}
.product{
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-bottom: 10px;
}
.product-list{
    padding: 20px 0;
}
.product img{
    width: 70px;
    object-fit: cover;
    border-radius: 8px;
}


















