/* Mobile Layout: 480px and below. Para formulário em modal */
input {display: block;}
::-webkit-input-placeholder {color: #868D8E;}/* WebKit, Blink, Edge */
:-moz-placeholder {color: #868D8E; }/* Mozilla Firefox 4 to 18 */
::-moz-placeholder {color: #868D8E;}/* Mozilla Firefox 19+ */
:-ms-input-placeholder {color: #868D8E;}/* Internet Explorer 10-11 */
::-ms-input-placeholder {color: #868D8E;} /* Microsoft Edge */

.form_modal {
	float: left;
	clear: both;
	margin-top: 10px;
	width: 100%;
	font-size: 15px;	
}

.tit_form_modal {
	float: left;
	clear: both;
	width: 98%;
	margin-top: 2px;
	margin-bottom: 4px;
	font-size: 30px;	
	line-height: 30px;
	font-weight: normal;
	text-align: center;	
	font-family: "Bebas-Neue-Book";
	color: #1D3153;
}

.area_form_modal {	
	float: left;
	clear: both;
	width: 100%;
	margin-top: 25px;
}

.campo_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 30px;
	background: #FFF;
	padding-left: 2%;
	margin-bottom: 10px;
	border: 1px solid #CCC;
	font-family: "LeelawadeeUI";
	color: #868D8E;
}

.campo_form_modal:valid {background: #FFF;}
.campo_form_modal:invalid {background: #FFF;}

.area_select_form_modal{
	float: left;
	clear: both;
	width: 100%;
	min-height: 35px;
	background: #FFF url(select2.png) no-repeat right;
	padding-left: 2%;
	margin-bottom: 10px;
	border: 1px solid #CCC;
	font-family: "LeelawadeeUI";
	color: #868D8E;
	overflow: hidden; /* Remove seta padrão do Google */
	-webkit-appearance: none;  /*Remove estilo padrão do Chrome*/
	-moz-appearance: none; /* Remove estilo padrão do FireFox*/
	text-indent: 0.01px; /* Remove seta padrão do FireFox */
	text-overflow: "";  /* Remove seta padrão do FireFox */
	appearance: none; 
}

.txt_form_modal {
	float: left;
	clear: both;
	width: 98%;
	height: 60px;
	background: #FFF;
	padding-top: 10px;
	padding-left: 2%;
	margin-bottom: 10px;
	border: 1px solid #CCC;
	font-family: "LeelawadeeUI";
}

.txt_form_modal:valid {background: #FFF;}
.txt_form_modal:invalid {background: #FFF;}

.bt_form_modal {
	float: right;
	clear: right;
	width: 100%;
	height: 40px;	
	font-family: "LeelawadeeUI";	
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background: #0002FB;
	transition: background .5s ease;
	border: 0;
}

.bt_form_modal:hover {
    background: #00009B;
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px), only screen and (orientation:landscape) {
.tit_campo_form_modal {
	font-size: 13px;
}
}

@media only screen and (min-width: 600px) {	
.tit_campo_form_modal {
	font-size: 15px;
}

.bt_form_modal {
	width: 50%;
	margin-left: 25%;
}
}

