@charset "utf-8";
/* CSS Document */

/* Campos de texto Inicio */
.EstiloForm input[type=text]{
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  border-radius: 10px;
}

#phone2{
	height: 80%;
}

#phone3{
	height: 80%;
}

.EstiloForm textarea{
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  border-radius: 10px;	
}

.EstiloForm textarea:focus{
  border: 3px solid #26a7eb;
  box-shadow: 0 0 0.5em #26a7eb;
}

.EstiloForm input[type=text]:focus{
  border: 3px solid #26a7eb;
  box-shadow: 0 0 0.5em #26a7eb;
}
/* Campos de texto Fim */

/* Botao Form Inicio */
.EstiloForm input[type=submit] {
  background-color: #26a7eb;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
}

.EstiloForm input[disabled]:hover {
    cursor: not-allowed;
	background-color: rgba(0, 89, 255, 0.2);
}

.EstiloForm input[disabled] {
	background-color: rgba(51, 153, 255, 0.2);
}

.EstiloForm input[type=submit]:enabled:hover {
  background-color: #0059ff;
}

/* Botao Form Fim */


/* Formulario Celular Inicio*/
@media (max-width:768px){
   .EstiloForm input[type=text]{
 	 width: 80%;
 	 padding: 12px 20px;
 	 margin: 8px 0;
 	 box-sizing: border-box;
 	 border: 3px solid #ccc;
 	 -webkit-transition: 0.5s;
 	 transition: 0.5s;
 	 outline: none;
	 border-radius: 10px;
	}
	
	#phone{
	height: 80%;
	}
	
	.EstiloForm textarea{
 	 width: 80%;
 	 padding: 12px 20px;
 	 margin: 8px 0;
 	 box-sizing: border-box;
 	 border: 3px solid #ccc;
 	 -webkit-transition: 0.5s;
 	 transition: 0.5s;
 	 outline: none;
	 border-radius: 10px;	
	}
	
	#alturamobile{
		height:170px;
	}
	
	.FixoNoTopo{
  position: fixed;
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background-color:#1a4385;
  z-index:10000000;
}
 }
