Hello, I am designing a small form with a div, but when I execute it, I want the TEXAREA Observation to have the size of the two INPUT, as you can see the input TURN is very low I want to put it above and the text area is the same size as the two together
here my code
//Incluido para fines de ejecución en stack-snippet
document.getElementById('fecha').value = new Date().toLocaleDateString("es-MX",{day:"2-digit", month:"2-digit", year:"numeric"}).replace(/\//g,"-");
<div class="form-group">
<div class="col-md-6">
<label class="col-xs-6">Fecha</label>
<input id="fecha" name="fecha" value="<?php echo date('d-m-Y'); ?>" data-date-format="dd-mm-yyyy" class="form-control datepicker">
<span class="help-block"></span>
</div>
<div class="col-md-6">
<label class="col-xs-6">Observación</label>
<textarea rows="3" cols="50" id="observacion" name="observacion" class="form-control"> </textarea>
<span class="help-block"></span>
</div>
<div class="col-sm-6" align="left">
<label class="col-xs-6">Turno</label>
<select class="form-control" id="turno">
<option value="">Seleccione el turno</option>
<option value="MAÑANA">Mañana</option>
<option value="TARDE">Tarde</option>
<option value="NOCHE">Noche</option>
</select>
<span class="help-block"></span>
</div>
</div>