* {
	font-family: "Poppins", sans-serif;
}

body {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
}

.body {
	padding: 10%;
	background: radial-gradient(ellipse at 50% 100%, #e7d8a4, white 70%);
	background-size: 120% 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.primaryLogo {
	margin-bottom: 6%;
	height: 10vh;
	width: auto;
}

.headingSection {
	display: flex;
	flex-direction: row;
	width: 92%;
	justify-content: space-between;
}

.mainHeading {
	text-align: center;
}

.icons {
	height: 64px;
	width: 64px;
	background-color: white;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.headingTextOne {
	color: #202030;
	font-size: 5rem;
	font-weight: 700;
}

.headingTextTwo {
	color: #ffc406;
	font-size: 5rem;
	font-weight: 400;
}

.para {
	color: #202030;
	font-weight: 300;
	font-size: 18px;
	line-height: 2;
	text-align: center;
	width: 60%;
}

.boldtext {
	font-weight: 600;
}

.formHeadingSection {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
}

.formHeading {
	font-size: 25px;
	font-weight: 500;
	color: #202030;
	padding-top: 16px;
	text-align: center;
	max-width: 60%;
}

.email {
	width: 470px;
	height: 46px;
	border: 1px solid #e0e0e0;
	border-radius: 8px 0px 0px 8px;
	padding-left: 10px;
	font-size: 16px;
}

input:hover,
input:focus {
	outline: none;
	cursor: text;
	border: 1px solid #e0e0e0;
}

input::placeholder {
	color: #828282;
	opacity: 1;
	font-size: 16px;
}

.emailBtn {
	width: 121px;
	height: 49px;
	border: 1px solid #e0e0e0;
	border-radius: 0px 8px 8px 0px;
	background-color: #202030;
	color: white;
	margin-left: -5px;
	cursor: pointer;
	font-size: 16px;
}

.onlyIconsSection {
	display: flex;
	flex-direction: row;
	width: 75%;
	justify-content: space-between;
	margin-top: 50px;
}

/* Media queries */

@media only screen and (max-width: 998px) {
	.body {
		padding: 6%;
	}
	.headingTextOne,
	.headingTextTwo {
		font-size: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.body {
		padding: 5%;
	}

	.headingTextOne,
	.headingTextTwo {
		font-size: 50px;
	}

	.inputSection {
		display: flex;
		flex-direction: row;
		align-items: center;
	}

	.email {
		width: 350px;
	}

	.emailBtn {
		width: 90px;
	}
}

@media only screen and (max-width: 630px) {
	.body {
		padding: 3%;
		margin-top: 50px;
	}
	.icons img {
		width: 25px;
		height: 25px;
	}

	.icons {
		width: 50px;
		height: 50px;
	}

	.headingTextOne,
	.headingTextTwo {
		font-size: 40px;
	}
	.para {
		font-size: 14px;
	}

	.formHeading {
		font-size: 20px;
	}

	.emailBtn,
	.email {
		font-size: 14px;
	}

	input::placeholder {
		font-size: 14px;
	}

	.onlyIconsSection {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 470px) {
	.headingTextOne,
	.headingTextTwo {
		font-size: 30px;
	}

	.para {
		font-size: 12px;
	}

	.formHeading {
		font-size: 18px;
	}

	.email {
		width: 250px;
		font-size: 12px;
	}

	input::placeholder {
		font-size: 12px;
	}

	.emailBtn {
		width: 80px;
		font-size: 12px;
	}
}
