/* Estilo tabela envio msgs */
input[type=text], select {
    width: 100%;
    padding: 12px 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=date], select {
    width: 100%;
    padding: 12px 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea[type=textarea], select {
    width: 100%;
    padding: 12px 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #2693FF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #4DA6FF;
}

div {
    border-radius: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
    padding: 20px;
}