.dhs-registration-form{
    max-width:900px;
    margin:30px auto;
    background:#ffffff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.dhs-row{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
}

.dhs-col{
    flex:1;
    min-width:260px;
}

.dhs-registration-form label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.dhs-registration-form input,
.dhs-registration-form select,
.dhs-registration-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:15px;
    box-sizing:border-box;
}

.dhs-registration-form input:focus,
.dhs-registration-form select:focus,
.dhs-registration-form textarea:focus{
    outline:none;
    border-color:#0073aa;
}

.dhs-btn{
    background:#0073aa;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.dhs-btn:hover{
    background:#005d8c;
}

.dhs-success{
    margin-top:20px;
    padding:15px;
    background:#d1fae5;
    color:#065f46;
    border-radius:6px;
}

.dhs-error{
    margin-top:10px;
    padding:15px;
    background:#fee2e2;
    color:#991b1b;
    border-radius:6px;
}

@media(max-width:768px){

    .dhs-row{
        display:block;
    }

    .dhs-col{
        margin-bottom:20px;
    }

}