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

#shopPageContactForm{
	padding: 1.5rem;
	background-color: #fff;
}
#shopPageContactForm a{
	background-color: #000;
	border: 2px solid #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem;
	width: 400px;
	max-width: 100%;
	margin: auto;
	transition: 0.3s;
}
#shopPageContactForm a:hover{
	background-color: #fff;
	color: #000;
}
@media screen and (max-width: 768px){

	#shopPageContactForm{
		padding: 20px;
	}
}