* {
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	background-color: #FFFFFF;
	color: #000000;
}

header {
	display: flex;
	height: 71px;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	background-color: #FFFFFF;
	border-bottom: 1px solid #F2F2F2;
}

.logo {
	display: block;
	width: 92px;
	height: auto;
}

.coming-soon-container {
	display: flex;
	align-items: center;
	gap: 4px;
}

.coming-soon {
	font-size: 14px;
	font-weight: 500;
	color: #B7B7B7;
}

main {
	position: relative;
	display: grid;
	width: 100%;
	height: calc(100% - 71px);
	margin: 0 auto;
	grid-template-columns: 45% 55%;
}

main::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: rgb(255,255,255);
	background: linear-gradient(
		104deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0) 55%,
		rgba(150,231,251,1) 75%,
		rgba(118,50,195,1) 100%
	);
	filter: blur(124px);
	opacity: 0.5;
}

.content-wrapper {
	display: flex;
	align-items: center;
	padding: 0 24px 68px;
}

.content-container {
	width: 100%;
	max-width: 500px;
	margin-left: auto;
}

.content-title {
	margin-bottom: 52px;
}

.content-mb {
	margin-bottom: 32px;
}

h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 51px;
	letter-spacing: 0.01em;
}

p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #6E7FA5;
}

form {
	display: flex;
	align-items: center;
	gap: 12px;
}

input[type="email"] {
	position: relative;
	height: 50px;
	flex: auto;
	padding: 0 20px;
	background-color: #FFFFFF;
	border: 1px solid #ECECEC;
	border-radius: 4px;
	box-shadow: 4px 4px 12px 0px rgba(217,217,217,0.35);
	font-size: 18px;
	font-weight: 400;
	transition: all 150ms ease-in-out;
}

input[type="email"]:focus {
	outline: none;
}

input[type="email"]:focus, input[type="email"]:hover {
	transform: scale(1.03);
}


input[type="email"]::placeholder {
	color: #B7B7B7;
}

input[type="submit"] {
	all: unset;
	position: relative;
	height: 50px;
	padding: 0 28px;
	background: #2356F6;
	border-radius: 4px;
	box-shadow: 4px 4px 12px 0px rgba(35,86,246,0.35);
	color: #FFFFFF;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: all 150ms ease-in-out;
}

input[type="submit"]:hover {
	background: #1440C5;
	box-shadow: 6px 6px 12px 0px rgba(20,64,197,0.35);
	transform: scale(1.05);
}

.hero {
	height: 100%;
	background: url("/hero.svg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 1279px) {
	form {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
	}

	input[type="email"] {
		width: 100%;
		flex: unset;
	}
}

@media screen and (max-width: 1023px) {
	.coming-soon-container {
		display: none;
	}

	main {
		grid-template-columns: 1fr;
	}

	main::after {
		background: url("/background.png");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		filter: blur(0);
	}

	.content-wrapper {
		display: flex;
		align-items: center;
		padding: 0 24px;
	}

	.content-container {
		width: 100%;
		max-width: unset;
		margin: 0;
	}

	.content-logo {
		display: none;
	}

	h1, p {
		text-align: center;
	}

	form {
		align-items: center;
		gap: 32px;
	}

	input[type="email"] {	
		background-color: rgba(255, 255, 255, 0.4);
	}

	.hero {
		display: none;
	}
}

@media screen and (max-width: 1920px) {
	.hero {
		background-size: cover;
	}
}
