form{
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	margin: 20px auto;
	padding: 0 10px;
	text-align: left;
}

.box_demo form{
	width: 100%;
}

/* PADRAO */
.campoForm{
	display: inline-block;
	width: 100%;
	padding: 0 10px;
	margin: 5px 0;
	position: relative;
}

.campoForm.meio{
	width: 50%;
}

.campoForm.quarto{
	width: 25%;
}

.campoForm.oitavo{
	width: 12.5%;
}

.campoForm span{
	display: block;
	width: 100%;
	margin-bottom: 6px;
	font-size: 14px;
	transition: 0.4s;
}

.campoForm input{
	display: block;
	width: 100%;
	padding: 7px 10px;
	background: #fff;
	border: none;
	border-radius: 8px;
	box-shadow: 0 0 10px #cac4c4;
	font-size: 14px;
	transition: 0.4s;
}

.campoForm input:focus,
.campoForm select:focus{
	box-shadow: 0 0 10px #136a9d;
}

.campoForm select{
	display: block;
	width: 100%;
	padding: 7px 10px;
	border: none;
	border-radius: 8px;
	box-shadow: 0 0 10px #cac4c4;
	font-size: 14px;
	transition: 0.4s;
	cursor: pointer;
}

.campoForm textarea{
	display: block;
	width: 100%;
	padding: 7px 10px;
	max-width: 100%;
	min-height: 150px;
	border: none;
	border-radius: 8px;
	box-shadow: 0 0 10px #444;
	background:#fff;
	font-size: 14px;
	transition: 0.4s;
	cursor: pointer;
}

.botaoConfirma{
	display: block;
	border: none;
	width: fit-content;
	padding: 7px 0;
	border-radius: 12px;
	background: #d2d530;
	transition: 0.4s;
	min-width: 150px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-family: OpenSans;
	margin: 25px auto;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
	text-transform: uppercase;
	font-size: 12px;
}

.botaoNaoConfirma{
	display: block;
	border: none;
	width: fit-content;
	padding: 7px 0;
	border-radius: 12px;
	background: #d53030;
	transition: 0.4s;
	min-width: 150px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-family: OpenSans;
	margin: 25px auto;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
	text-transform: uppercase;
	font-size: 12px;
}

.botaoNaoConfirma:hover{
	background:#ef3838
}

.botaoConfirma:hover{
	background: #e6e935;
}

/* MODERNO */
.form_moderno{
	max-width: 500px;
}

.form_moderno .campoForm span{
	width: fit-content;
	position: relative;
	bottom: -30px;
	margin: 0;
	left: 10px;
}

.form_moderno .campoForm span.selecionado{
	bottom: 0;
	left: 0;
	font-size: 12px;
	color: #16ab0c;
    font-weight: bold;
}

.form_moderno .campoForm input{
	border: none;
	border-bottom: 1px solid #444;
	box-shadow: none;
	border-radius: 0;
}

label.error{
	font-size: 12px;
	color: red;
}

.form_moderno .campoForm.textarea{
	margin: 10px 0;
} 

@media screen and (max-width: 600px){
	form{
	    width: 100%;
	}
}