form {
    width: 100%;
    padding: 0;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

/* Contêiner do produto */
#product-container {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#product-container img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 15px;
}

#product-details h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

#product-details p {
    font-size: 14px;
    margin-bottom: 5px;
}

#product-price {
    font-size: 16px;
    font-weight: bold;
    color: #009846;
}

#product-discount {
    font-size: 12px;
    text-decoration: line-through;
    color: #888;
}

.promo-box-aply {
    background-color: #a5e9c5;
    border-radius: 8px;
    border: 1px solid green;
    padding: 16px;
    color: #009846;
    font-weight: 600;

}