body{
margin:0;
font-family:serif;
background:#f8f3ea;
color:#111;
}

.order-container{
max-width:1200px;
margin:auto;
padding:60px 20px;

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.product-box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.product-box img{
width:100%;
border-radius:20px;
}

.product-box h1{
font-size:42px;
margin-top:20px;
}

.product-box h2{
font-size:38px;
color:#c9a227;
}

.form-box{
background:#111;
padding:40px;
border-radius:20px;
color:white;
}

.form-box h3{
font-size:32px;
margin-bottom:25px;
}

input,
textarea{
width:100%;
padding:16px;
margin-bottom:20px;
border:none;
border-radius:12px;
font-size:16px;
}

textarea{
height:120px;
resize:none;
}

button{
width:100%;
padding:18px;
background:#c9a227;
border:none;
border-radius:12px;
font-size:18px;
font-weight:bold;
cursor:pointer;
}

@media(max-width:768px){

.order-container{
grid-template-columns:1fr;
}

.product-box h1{
font-size:30px;
}

}