@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@500&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Prompt', sans-serif;
}
#contact
{
	position: relative;
	min-height: 100vh;
	padding: 50px 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column; 
	background: #B0E0E6;
}
.contact .content
{
	max-width: 800px;
	text-align: center;
}
.contact .content h2
{
	font-weight: 300;
	color: #B8860B;
}
.contact .content p
{
	font-weight: 300;
	color: #000000;

}
.container
{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.container .contactInfo
{
	width: 50%;
	display: flex;
	flex-direction: column;
}
.container .contactInfo .box
{
	position: relative;
	padding: 20px 0;
	display: flex;
}
.container .contactInfo .box .icon
{
	min-width: 60px;
	height: 60px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 22px;
}
.container .contactInfo .box .icon .text
{
	display: flex;
	margin-left: 20px;
	font-stretch: 16px;
	color: black;
	flex-direction: column;
	font-weight: 300;
}
.container .contactInfo .box .icon .text h3
{
	font-weight: 500;
	color: #00bcd4;
}
.contactForm
{
	width: 40%;
	padding: 40px;
	background: #fff; 
}
.contactForm h2
{
	font-size: 30px;
	color: #00008B;
	font-weight: 500;
}
.contactForm .inputBox input, textarea
{
	width: 100%;
	padding: 5 px 0;
	font-size: 16px;
	margin: 10px 0;
	border: none;
	border-bottom: 2px solid #333;
	outline: none; 
}
.contactForm .inputbox span
{
	position: absolute;
	left: 0;
	padding: 5px 0;
	font-size: 16px;
	margin: 10px 0;
	pointer-events: none;
	transition: 0.5s;
	color: #666;  
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span,
{
	color: #e91e63;
	font-size: 12px;
	transform: translateY(-20px);
}
.contactForm .inputBox input[type="Submit"]
{
	width: 100px;
	background: #00008B;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;  
}

@media (max-width: 991px)
{
	.contact{
		padding: 50px; 
	}
	.container{
		flex-direction: column;
	}
	.container .contactInfo{
		margin-bottom: 40px;
	}
	.container .contactInfo{
		width: 100%;
	}
}