/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea, option, checked {
    width: 100%; /* Full width */
    padding: 8px; /* Some padding */  
    border: 1px solid #000; /* Gray border */
    border-radius: 3px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 3px; /* Add a top margin */
    margin-bottom: 3px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */; background-color:#ccc; height:40px
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #00266d;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	width:150px; float:right
}