Need to margnin-top all labels except the first one in the row, using not:nth child. Having issue with the selector probably**
// template:
<div class="form-group">
<label class="label">
</div>
<div class="form-group">
<label class="label"> // need to margin only this label - not the first one
</div>
//styles
.form-group:not(:nth-child(1)) + .label {
margin-top: 20px;
}
Correct your html. Remove adjacent sibling and add display:inline-block to label (by default it is inline-element)