main {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#s-form-contact {
	width: 80%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
	padding: 40px;
	background-color: #dad6d6;
	border-radius: 20px;
	margin-bottom: 20px;
}

#content-form-contact {
	width: 100%;
}
#content-form-contact form {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
	align-items: center;
	gap: 20px 40px;
}

#content-form-contact form textarea {
	resize: none;
	height: 100px;
}
#content-form-contact form textarea,
#content-form-contact form input {
	width: 100%;
	padding: 8px 20px;
	font-size: 20px;
	font-weight: lighter;
	border: none;
	background-color: #f1f1f1;
	border-radius: 30px;
	color: #989898;
}

#content-form-contact form textarea.medio,
#content-form-contact form input.medio {
	width: 100%;
}

#content-image-form {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px 0px;
}

#content-image-form img {
	width: 100%;
}
#content-image-form button {
	background-color: var(--azul);
	border-radius: 30px;
	padding: 4px 20px;
	border: none;
	color: var(--blanco);

	font-weight: bold;
	font-family: "Raleway-Bold" !important;
	font-size: 30px;
	letter-spacing: 3px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 992px) {
	#s-form-contact {
		flex-direction: column;
		padding: 20px;
	}

	#content-form-contact {
		width: 100%;
	}

	#content-form-contact form input.medio {
		width: 100%;
	}

	#content-image-form {
		width: 60%;
	}

	#content-form-contact form input {
		padding: 4px 20px;
		font-size: 18px;
		border-radius: 30px;
	}
}
