.login {
	position: relative;
	height: 100vh;
	background: url("https://assets.nflxext.com/ffe/siteui/vlv3/5e48e7b6-350d-48d9-96d6-de8ca173c89f/083b0034-e11a-432d-9a74-0b6b0eec0e39/EG-en-20221219-popsignuptwoweeks-perspective_alpha_website_large.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.login_logo {
	position: fixed;
	left: 50%;
	top: 20px;
	transform: translate(-50%, 20px);
	width: 150px;
	object-fit: contain;
	cursor: pointer;
}
.login_button {
	position: fixed;
	right: 20px;
	top: 20px;
	padding: 10px 20px;
	font-size: 1rem;
	color: #fff;
	background-color: #e50914;
	font-weight: 600;
	border: none;
	cursor: pointer;
}
.login_gradient {
	width: 100%;
	z-index: 1;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.8) 0,
		rgba(0, 0, 0, 0) 60%,
		rgba(0, 0, 0, 0.8) 1000%
	);
}
.login_body {
	position: absolute;
	width: 100%;
	top: 30%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	z-index: 1;
	color: #fff;
	padding: 15px;
	left: 0;
	right: 0;
}
.login_body > h1 {
	font-size: 3.125rem;
	margin-bottom: 20px;
}
.login_body > h2 {
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 30px;
}
.login_body > h3 {
	font-size: 1.3rem;
	font-weight: 400;
}
.login_input {
	margin: 20px;
}
.login_input > form > input {
	padding: 10px 20px;
	outline-width: 0;
	height: 52px;
	width: 30%;
	max-width: 600px;
	font-size: 18px;
}
.btn_getStarted {
	text-transform: uppercase;
	padding: 16px 20px;
	font-size: 1rem;
	color: #fff;
	background-color: #e50914;
	border: none;
	font-weight: 600;
	cursor: pointer;
}
@media (max-width: 768px) {
	.login_body > h1 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}
	.login_body > h2 {
		font-size: 1.5rem;
		font-weight: 400;
		margin-bottom: 30px;
	}
	.login_body > h3 {
		font-size: 0.9rem;
		font-weight: 400;
	}
	.login_input > form > input {
		max-width: 100%;
		width: 50%;
		font-size: 16px;
	}
}
