.iwohd-form-wrapper{
    max-width:1000px;
    margin:30px auto;
    background:#ffffff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 20px rgba(0,0,0,.08);
}

.iwohd-header{
    text-align:center;
    margin-bottom:30px;
}

.iwohd-header h1{
    margin:10px 0;
}

.iwohd-header h2{
    color:#2271b1;
}

.iwohd-section{
    margin-bottom:30px;
}

.iwohd-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.iwohd-field{
    display:flex;
    flex-direction:column;
}

.iwohd-field label{
    font-weight:600;
    margin-bottom:6px;
}

.iwohd-field input,
.iwohd-field select,
.iwohd-field textarea{
    padding:10px;
    border:1px solid #ddd;
    border-radius:5px;
}

@media(max-width:768px){

    .iwohd-grid{
        grid-template-columns:1fr;
    }

}