@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

*{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1.1rem;
	font-family: 'Urbanist', sans-serif;
	vertical-align: baseline;
	box-sizing: border-box;
}

.accs-btn{
	padding: 2px;
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1b44fa;
	border-radius: 4px;
	color: #ffffff !important;
	transition: 0.3s  all ease;
	z-index: 2;
}
.accs-btn:hover{
	opacity: 0.7;
	color: #ffffff;
}
.accs-btn svg{
	width: 100%;
}

.lp-container{
	padding: 1rem;
}

.lp-container{
	position: relative;
	width: 100%;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #e20411;
	gap: 1rem;
}
.lp-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/background.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: opacity(0.9);
	z-index: 1;
}
.lp-form{
	position: relative;
	padding: 1.5rem 3rem;
	z-index: 2;
	background: #ffffff;
	border: 5px solid #e20411;
	border-radius: 20px 0 20px 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
	width: min(500px, 100%);
}
.lp-form h1{
	font-size: 2.5rem;
}
.lp-form h1 strong{
	font-size: 2.5rem;
	color: #e20411;
}
.lp-form form{
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	gap: 0.5rem;
}
.lp-form #submit-button{
	margin-top: 1rem;
}

@media screen and (max-width: 580px){
	.lp-form{
		position: relative;
		padding: 1.5rem 1rem;
	}
}