body,html{
    overflow: hidden;
}

h1{
    color: black;
    text-align: center;
}
.product{
    display: inline-block;
    width: 90%;
    max-width: 500px;
    height: 75px;
    padding: 0;
    border: 1px solid whitesmoke;
}

.product:hover{
    background-color: whitesmoke;
}

.product-image{
    display: inline-block;
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.illux{
    display: inline-block;
    overflow-y: scroll;
}

#aftx{
    display: inline-block;
    width: 100%;
    height: 70px;
}

.lux-ati-next-purchase{
    color:white;
    cursor : pointer;
    width: fit-content;
    height: 40px;
    margin: 0%;
    padding: 0% 10px;
}


.product-name{
    position: absolute;
    top: 0%;
    left: 80px;
}
.product-price{
    position: absolute;
    top: 25px;
    left: 80px;
    color: lightseagreen ;
}

.remove-product-btn{
    display: inline-block;
    height: 30px;
    background-color: red;
    color: white;
    padding: 0% 10px;
    bottom: 5;
    right: 5px;
}

form {
    display: inline-block;
    width: 95%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
.form-group .error {
    color: red;
    font-size: 0.9em;
    display: none;
}