.cc-checkout{
display:flex;
gap:40px;
align-items:flex-start;
max-width:1100px;
margin:40px auto;
}

.cc-left{
width:50%;
}

.cc-right{
width:50%;
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cc-right img{
width:100%;
display:block;
border-radius:10px;
margin-bottom:20px;
}

#cc-form{
display:flex;
flex-direction:column;
gap:15px;
}

#cc-form input{
width:100%;
height:50px;
padding:0 15px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
box-sizing:border-box;
}

#cc-form button{
width:100%;
height:55px;
background:#e2136e;
color:#fff;
border:none;
border-radius:8px;
font-size:18px;
font-weight:700;
cursor:pointer;
}

#cc-form button:hover{
background:#c10f5d;
}

@media(max-width:768px){

.cc-checkout{
flex-direction:column-reverse;
padding:15px;
gap:25px;
}

.cc-left,
.cc-right{
width:100%;
}

}