BOOTSTRAP - Input Field Height

HTML

<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" />

<form class="form-inline huge-form" id="search-form">
    <input type="text" class="span3" value="This is a lowercase J: j"/>
    <button>Text here</button>
</form>

CSS

.huge-form input,
.huge-form button {
    font-size:1.5em;
    padding:0;
    line-height:31px;
    height:31px;
/*
    line-height: 1.5em;
    height: 1.5em;
*/
}