@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    background: rgb(148 131 200);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}
.container{
    width: 375px;
    height: 520px;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.06);
    overflow-y: scroll;

}
.container::-webkit-scrollbar{
display: none;
}
.container form{
    width: 100%;
    border: 1px solid rgb(82, 74, 235);
    border-radius:4px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.container form input{
    border: none;
    outline: none;
    box-shadow: none ;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 10px;

}
.container form i{
    padding-left: 10px;
}
.product-list{
    padding: 20px 0;
}
.product{
   display: flex;
   align-items: center;
   cursor: pointer; 
   padding-bottom: 15px;
}
.product img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.product .p-details{
    padding-left: 15px;
}
.product .p-details h2{
    font-size: 18px;
    color: rgb(34, 13, 13)
}
.product .p-details h3{
    font-size: 15px;
    
}