#forma input, select {
	margin-bottom: 15px;
	height: 30px;
	box-sizing: border-box;
    border: 2px solid #BBB;
    border-radius: 4px;
    background-color: #f8f8f8;
	padding: 5px;
}

#forma textarea {
	margin-bottom: 15px;
	height: 300px;
	box-sizing: border-box;
    border: 2px solid #BBB;
    border-radius: 4px;
    background-color: #f8f8f8;
}

#forma input[type=submit]{
	font-family:'Open Sans', sans-serif; 
    background-color: #004E93;
    border: none;
    color: #FFF;
	font-weight:bold;
	font-size: 12px;
	letter-spacing: 0.02em;
}

#forma input[type=submit]:hover{
    background-color: #0099ff;
}

/** all devices and responsive browser windows **/
@media screen and (max-width: 1800px) {
	#forma input, textarea, select {
		width: 85%;
	}
}


/* smaller screen dropoff *******/
@media only screen and (max-width: 550px) {
 	#forma input, textarea, select {
		width: 80%;
	}
}

/* iPhone Landscape ********/
@media only screen and (max-width: 480px) {
	body {
		padding: 10px 0px;
	}
	select.selmenu {
		width: 190px;
	}
}

/* iPhone portrait *******/
@media only screen and (max-width: 320px) {
 	#forma input, textarea, select {
		width: 70%;
	}
	#forma #aligned {
		overflow: hidden;
	}
}