*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	font-family: 'outfit';
	background-color: #E9C619;
}
.contactt-containerr{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-evenly;	
}
.contactt-leftt{
	display: flex;
	flex-direction: column;
	align-item: start;
	gap: 20px;
}
.contactt-leftt-titlee h2{
	font-weight: 600;
	color: #1D1B45;
	font-size: 40px;
	margin-bottom: 5px;
}
.contactt-leftt-titlee hr{
	border: none;
	width: 120px;
	height: 5px;
	background-color: #1D1B45;
	border-radius: 10px;
	margin-bottom: 20px;
}
.contactt-inputss{
	width: 400px;
	height: 50px;
	
	outline: box;
	padding-left: 25px ;
	font-weight: 500;
	color: #666;
	border-radius: 50px;

}
.contactt-leftt textarea{
	height: 140px;
	padding-top: 15px;
	border-radius: 20px;
	
	outline: box;
}
.contactt-inputss: focus{
	border: 2px solid #ff994f;
}
.contactt-inputss: placeholder{
	color: #a9a9a9;
}
.contactt-leftt button{
	display: flex;
	align-items: center;
	padding: 15px 30px;
	font-size: 16px;
	color: #fff;
	gap: 10px;
	border: none;
	border-radius: 50px;
	background-color: #1D1B45;
	cursor: pointer;
}
.contactt-leftt button img{
	height: 15px ;
}
.contactt-rightt img{
	width: 500px;
}
@media (max-width: 800px){
	.contactt-inputss{
		width: 80vw;
	}
	.contactt-rightt{
		display: none;
	}
}





