Good morning, I'm having trouble leaving the button next to the select. It always stays below the field, how can I leave it positioned on the right side of the field?
<div class="form-group">
<label class="col-md-4 control-label" for="Selecione">SERVIÇOS :</label>
<div class="col-md-4">
<select name="servico_idservico" class="form-control" id="perfil_id required" >
<option value="">Selecione</option>
<%
for(Servico sl:f.listarServicosNaoVinculados()){
%>
<option value="<%=sl.getIdservico() %>"><%=sl.getNome() %></option>
<%
}
%>
</select><div class="form-group">
<label class="col-md-4 control-label" for=""></label>
<div class="col-md-4">
<button class="btn btn-primary" type="submit">Confirmar Vinculação</button>
</div>
</div>
</div>
</div>