JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="view-source:https://harvesthq.github.io/chosen/chosen.jquery.js"></script>
<link rel="stylesheet" href="https://harvesthq.github.io/chosen/chosen.css">
<div class="panel-body">
                <form role="form" class="form-horizontal" action="http://local-tb.com/admin/hostel/hostelstep1" method="post" accept-charset="utf-8" id="form_hostelstep1" name="form_hostelstep1" enctype="multipart/form-data">
                     <input type="hidden" name="ci_csrf_token" value="">

                                            

                            <div class="col-xs-12 col-sm-4 col-md-2" style="background-color: #7B9F35;border: 1px solid #7B9F35; padding: 3px;">
                                                                <span class="h4">Step 1</span><br>
                                <span class="h5" style=" text-transform: uppercase;">Hostel&nbsp;Details</span>
                                                            </div>


                            <div class="col-xs-12 col-sm-4 col-md-2" style="background-color: #ffffff;border: 1px solid #7B9F35; padding: 3px;">
                                                                <span class="h4">Step 2</span><br>
                                <span class="h5" style=" text-transform: uppercase;">Advertising&nbsp;Options</span>
                                                            </div>


                            <div class="col-xs-12 col-sm-4 col-md-2" style="background-color: #ffffff;border: 1px solid #7B9F35; padding: 3px;">
                                                                <span class="h4">Step 3</span><br>
                                <span class="h5" style="...

CSS

/*** Forms Start ***/

.form-group {
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
    border: 0px solid navy;
}
.form-group>div>input {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
    border: 0px dotted red;
}

.form-group>div>select {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0px;
    margin-right: 0px;
    border: 0px dotted #ffff00;
}

.control-label {
    margin-top: 0px;
    margin-bottom: 0px;
    border: 0px dotted brown;
    align : left;
    align-content: stretch;
}

.form-control {
    height: 30px;
    color: #808080;
    padding-top: 0px;
    padding-bottom: 0px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(215, 215, 215, 0.9);
}

.form-control:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(128, 128, 128, 0.9);

}

.btn-group {
    overflow: hidden;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 2px;
    margin-right: 2px;
    border: 0px solid maroon;
}


/*** Forms End ***/


div.table-wrapper {
    padding-top: 0px;
    margin-top: 0px;
}
.header_block_start {
    padding: 0px;
    margin: 0px;
    border: 3px dotted red;
}
.widgettitle {
    background: #7B9F35;
    /*color: #882D61; */
    color: white;
    padding-top: 2px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 16px;
    clear: both;
    border: 0px dotted #000080;
}

.widgetcontent  {
    padding-top: 0px;
    padding-bottom: 5px;
    padding-right: 0px;
    padding-left: 0px;
    /* border: 2px solid red; margin: */;
    border: 5px solid #7B9F35;
    margin-bottom: 15px;
    margin-top: -10px;
    margin-left: 0px;
    margin-right: 0px;
    display: block;
    overflow: hidden;
}


div.error {
        margin-top: 10px;
        margin-bottom: 10px;
    border: #e5695d 1px solid;
  ...