I want a wider textbox. I have the following code but the textbox is still not that wide. I want it to basically take up 50% of the screen. Basically so it looks like google.com
<div class="row">
<div class="col-lg-12" style="margin: 5px auto; text-align: center; background-color: Red">
<input type="text" name="txtVideo" class="form-control input-lg" style="margin: 0px auto" />
</div>
</div>
I basically want this textbox to be the only thing in this row and to take up 50% of the screen. When I do col-lg-1 it's way to the left. I guess I don't really understand what col-lg-# is all about.