.cm-form-wrapper{
max-width:1100px;
margin:auto;
font-family:Arial;
}

.cm-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.cm-grid input,
.cm-grid textarea{
width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:4px;
}

.cm-grid textarea{
grid-column:1/4;
height:120px;
}

.cm-submit{
background:#2EC4B6;
color:white;
border:none;
padding:14px;
cursor:pointer;
border-radius:4px;
grid-column:3;
}

.cm-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
}

.cm-popup-content{
background:white;
padding:30px;
border-radius:6px;
text-align:center;
}