.public input[type=text], /* will only select text fields */
.public input[type=email], /* will only select email text fields */
.public input[type=password], /* will only select password fields */
.public input[type=tel], /* will only select password fields */
.public textarea,
.public select {
	border: 1px solid #CCC;
    border-radius: 5px;
}

.public textarea { min-height: 34px; }

.dates select {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin: 0;

    background-color: #FFF;
    color: #000;

    border: 1px solid #CCC;
    border-radius: 5px;

    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}