* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #1A1A1A;
	color: #fff;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
}
html,
body,
.page {
	height: 100%;
}
.page {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 750px;
	padding: 15px 30px;
	text-align: center;
}
.logo {
	width: 200px;
	margin-bottom: 50px;
}
p {
	margin-bottom: 30px;
}
p.lead {
	min-height: 78px;
	margin-bottom: 30px;
	overflow: hidden;
	font-weight: 700;
	font-size: 32px;
}
form {
	display: block;
	width: 100%;
	padding-right: 100px;
	padding-left: 100px;
}
.input-group {
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding-right: 5px;
	border-radius: 30px;
	border: 1px solid #000;
	background-color: #000;
	transition: border-color .2s ease-in-out;
}
.input-group.focus {
	border-color: rgba(46,55,150,1);
}
input {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 30px;
	border: 0;
	background: none;
	color: #fff;
	font-size: 16px;
}
input:focus {
	outline: 0;
}
button {
	height: 50px;
	margin-left: auto;
	padding: 10px 30px;
	border: 0;
	border-radius: 25px;
	background: rgb(2,115,190);
	background: linear-gradient(100deg, rgba(2,115,190,1) 0%, rgba(46,55,150,1) 100%);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
button:hover {
	background: linear-gradient(100deg, rgba(46,55,150,1) 0%, rgba(2,115,190,1) 100%);
}
#response_message {
	margin-top: 30px;
	font-size: 18px;
}
.show#response_message {
	animation: fade-down .5s;
}

#rain {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -69;
	transform: rotate(180deg);
	mix-blend-mode: lighten;
	opacity: .75;
}

@media (max-width: 576px) {
	.container {
		width: auto;
	}
	form {
		padding-right: 0;
		padding-left: 0;
	}
	.input-group {
		width: auto;
	}
	button {
		padding: 10px 15px;
	}
}

@keyframes fade-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}