.contactPage {
	background: #ddd;
	padding: 1rem;
	width: calc(100% - 2.5rem);
	margin: 1rem 0;
}
.contactPage .inputBox {
	width: 50%;
	margin: 0.5rem 0;
	display: block;
}
.contactPage textarea,
.contactPage input {
	outline: none;
	border: none;
}
.contactPage .doubleBox {
	display: flex;
	width: 100%;
}
.contactPage .inputBox {
	width: 50%;
	margin: 0.5rem 0;
	display: block;
}
.contactPage label {
	display: inline-block;
	margin-bottom: 0.5rem;
}
.contactPage textarea {
	width: 94%;
	height: 200px;
	font-family: inherit;
	font-size: inherit;
	border: none;
	background: #fff;
}
.contactPage select {
	height: 38px;
	width: 43.5%;
	outline: none;
	padding-left: 2%;
	background: #fff;
	border: none;
}
.contactPage .inputBox input {
	width: 85%;
	height: 38px;
	outline: none;
	padding-left: 2%;
	background: #fff;
	margin-left: 0;
	border: none;
}
.contactPage .btnBox {
	display: flex;
	margin-top: 1rem;
	align-self: flex-end;
	text-transform: uppercase;
}
.contactPage .btnMail {
	background: var(--color-1);
	color: white;
	border-radius: 30px;
	padding: 0.5rem 1rem;
	border: 2px var(--color-1) solid;
	transition: 0.5s ease;
	cursor: pointer;
}
.contactPage .btnMail:hover {
	background: transparent;
	color: black;
}
@media all and (max-width: 700px) {
	.contactPage .doubleBox {
		flex-direction: column;
	}
	.contactPage .inputBox {
		width: 100%;
	}
}
