@font-face {
  font-family: "Graphik";
  src: url('../fonts/GraphikRegular.otf');
}

* {
	box-sizing: border-box;
	border: 0;
	margin: 0;
	padding: 0;
}

html {
	overflow-x: hidden;
	width: 100vw;
}

body {
	width: 100vw;
}

body, p {
	font-family: Graphik;
}

a {
	color: #0047bb;
	text-decoration: none;
}

h2 {
	font-size: 20px;
	text-align: center;
	padding-bottom: 30px;
}

label, select, input {
	width: 100%;
	margin-bottom: 20px;
	font-size: 16px;
}

select, input {
	width: 100%;
	height: 44px;
	border-radius: 4px;
	border: solid 0.5px #878787;
	background-color: #fff;
	padding: 0 10px;
}

main {
	width: 100%;
	max-width: 550px;
	margin: auto;
	text-align: center;
	padding-top: 30px;
}

main > img {
	max-width: 100%;
	width: 350px;
}

form {
	margin-top: 30px;
	width: 100%;
	padding: 40px 50px;
	border-radius: 8px;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.35);
	background-color: #fff;
	text-align: left;
	display: flex;
	flex-direction: column;
}

.button {
	height: 44px;
	margin: 20px 0;
	background-color: #0047bb;
	font-size: 16px;
	color: #fff;
	border-radius: 8px;
}

.password {
	display: grid;
	grid-template-columns: 40% 60%;
}

.password a {
	text-align: right;
}

.bg-gray {
	position: absolute;
	width: 100vw;
	height: 80vh;
	z-index: -999;
	background-color: #f8f9ff;
	clip-path: polygon(0 0, 100% 0, 100% 66%, 0% 100%);
}

p > a {
	color: #000;
}

.forgot-password-mobile {
	display: none;
}

.bg-1, .bg-2, .bg-3 {
	width: 258px;
	position: fixed;
	z-index: -1;
}

.bg-1 {
	top: 43vh;
	right: -51px;
}

.bg-2 {
	top: 55vh;
	right: -129px;
}

.bg-3 {
	top: 70vh;
	left: -74px;
}

@media (max-width: 600px) {
	form {
		width: 95%;
		margin: auto;
		padding: 35px 50px;
		margin-top: 25px;
	}

	main > img {
		max-width: 80%;
	}

	.forgot-password {
		display: none;
	}

	.forgot-password-mobile {
		display: initial;
		text-align: center;
		padding-top: 10px;
		padding-bottom: 20px;
	}

	.legal {
		font-size: 13px;
	}

	select, input {
		height: 38px;
		font-size: 13px;
	}

	label, select, input {
		margin-bottom: 10px;
	}

	label {
		font-size: 14px;
	}

	.button {
		height: 27px;
		margin: 20px 0;
		background-color: #0047bb;
		font-size: 14px;
		color: #fff;
		border-radius: 8px;
		margin-bottom: 0;
	}

	.bg-1, .bg-2, .bg-3 {
		width: 189px;
	}

	.bg-1 {
		top: 35vh;
		right: -51px;
	}

	.bg-2 {
		top: 43vh;
		right: -129px;
	}

	.bg-3 {
		top: 50vh;
		left: -74px;
	}
}

@media (max-width: 400px) {
	form {
		width: 90%;
		padding: 35px 40px;
	}
}