h1 {
    text-align: center;
    margin-top: 50px;
}
form {
    display: flex;
    flex-direction: column;
    place-items: center;
    margin-bottom: 100px;
    max-width: 400px;
    margin: auto;

}
label {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
}
input, select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid black;
    box-sizing: border-box;
}
button {
    margin-top: 30px;
    width: 30%;
    padding: 8px;
    font-size: 18px;
    background-color: gray;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

input:focus, select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0,123,255,0.4);
}

.main-layout {
    display: flex;
    gap: 70px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 10px;
}

.products {
    flex: 1;
    width: 700px;
    margin-top: 5%;
}

.form-area {
    flex: 1;
}

.product-card {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.product-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .main-layout {
    flex-direction: column;
    }
}

@media (max-width: 768px) {
    .products {
    width: 300px;
    }
}