/* INICIO FORMATO FORMULARIOS y BOTONES */

.formatoForm {
	display:flex;
	width:100%;
	flex-direction:column;
	align-items:center;
}

.contenedorInput {
	width:100%;
	margin:1em;
}

.formatoForm .contenedorBoton {
	text-align:center;
}

.formatoForm input,
.formatoForm select {
	border:none;
	border-radius:0;
	border-bottom:solid 1px var(--bordeGris);
	background-color:transparent;
}

.formatoForm select {
	cursor:pointer;
}

.btn-primary {
	border:none;
	border-radius:1px;
	text-transform:uppercase;
	font-weight:500;
	padding:8px 25px 6px 25px;
	background-color:var(--brandPrimaryLight);
}

.btn-primary:hover {
	background-color:var(--brandPrimaryLighter);
}

.btn-actionForm {
	width:50%;
}

@media screen and (min-width:992px) {
	.formatoForm {
		flex-direction:row;
		justify-content:space-around;
	}
	.contenedorBoton {
		width:auto;
	}
	.btn-actionForm {
		width:auto;
	}

}

/* FINAL FORMATO FORMULARIOS y BOTONES */