@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');


* {
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', 'sans-serif;';
}

body {
	background-color: #fafafa;
}

section {
	padding: 75px 50px;
}

section div img {
	width: 45%;
	height: auto;
	object-fit: fill;
	object-position: center;
	margin-left: 25px;
}

.forgot {
	display: flex;
	justify-content: center;
	flex-direction: row;
	background-color: #fff;

	/*	box-shadow: 0px 2px 4px 0px #14141425;
*/
}

.forgot div {
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.forgot div h1 {
	font-size: 46px;
	color: #2f2e41;
}

.forgot div p {
	color: #2f2e41;
	opacity: 50%;
	margin-bottom: 25px;
}

.forgot div a {
	color: #324A89;
}

.forgot div input {
	padding: 10px 25px;
	width: 75%;
	border: 1px solid #324A8950;
	margin-bottom: 25px;
	border-radius: 5px;
	outline: none;

}

.forgot div button {
	padding: 10px 30px;
	background-color: #324A89;
	color: #fff;
	border: none;
	border-radius: 5px;
}

.forgot div button:hover {
	background-color: #f6f6f6;
	color: #6c63ff;
}

/* ********************* Responsive ********************/

@media only screen and (max-width:425px) {
	.forgot div {
		padding: 50px;
	}


	section div img {
		display: none;
	}

	section {
		padding: 0px;
	}
}

@media only screen and (max-width:375px) {
	.forgot div {
		padding: 50px;
	}

	section div img {
		display: none;
	}

	section {
		padding: 0px;
	}
}

@media only screen and (max-width:320px) {
	.forgot div {
		padding: 50px;
	}

	section div img {
		display: none;
	}

	section {
		padding: 0px;
	}
}