.contacto-formulario-todo {
	top: 200px;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.cf-centro {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.cf-centro h2 {
	color: var(--naranja-color);
}

.cf-datos label {
	font-weight: bold;
	font-size: 13px;
}

.cf-datos {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 800px;
}

.cf-fila {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.cf-columna {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.cf-fila-sub {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 10px;
	width: 100%;
}

#cidade {
	margin-right: 20px;
}

.input_class[type=text], .input_class[type=password], .input_class[type=date], .input_class[type=number], select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.cf-button-enviar {
	width: 80px;
	border-radius: 5px;
	background-color: var(--azul-color);
	border-color: var(--azul-color);
	cursor: pointer;
	color: white;
	font-weight: bold;
	padding: 5px;
}

.email_cod_tel {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.cv-cod-area-telefone {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.email_class {
	width: 90%;
	margin-right: 20px;
}

.cod_area_class {
	width: 25%;
	margin-right: 20px;
}

.tel_class {
	width: 100%;
}

#emailRepetido {
	color: red;
	display: none;
}

#espere_por_favor_msg {
	color: var(--azul-color);
	display: none;
}

#success_register {
	color: var(--naranja-color);
	font-weight: bold;
	display: none;
}

@media only screen and (max-width: 590px) {  

	.contacto-formulario-todo {
		top: 90px;
		width: 100%;
	}

	.cf-centro {
		width: 96%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.cf-datos {
		width: 100%;
	}

	.email_class {
		width: 100%;
	}

	.email_cod_tel {
		flex-direction: column;
	}

}