@font-face {
	font-family: 'Inter';
	src: url('Inter-var.ttf') format('truetype');
}

body{
	background-color: #292D3C;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
	font-family: 'Inter', sans-serif;
}

.header_container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 500px;
	padding: 0 20px;
	flex-direction: column;
	color: white;
	animation: showHeader 0.5s ease forwards;
	animation-delay: .25s ;
	opacity: 0;
}

.header_container h3{
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.3px;
	margin-bottom: 30px;
}

.header_logo img{
	width: 200px;
	display: none;
}

@keyframes showHeader{
	0%{
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}

.participe_container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 440px;
	width: 500px;
	background-color: white;
	border-radius: 16px;
	flex-direction: column;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	animation: showParticipe 0.5s ease forwards;
}

@keyframes showParticipe{
	0%{
		opacity: 0;
		transform: translateY(80px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}

.days_container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 4px;
	margin-bottom: 20px;
	color: rgb(19, 103, 199);
}

.days_container svg{
	width: 20px;
	height: 20px;
}

.days_container span{
	font-weight: 700;
}

.participe_container ol{
	padding: 0;
}

.participe_container li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	margin: 0 30px;
	gap: 18px;
	background-color: #f5f4f4;
	border-radius: 8px;
	padding: 4px 6px;
	font-size: 15px;
}

.participe_container li div{
	display: flex;
	justify-content: left;
	align-items: center;
	background-color: #f5f4f4;
	padding: 10px 10px 0;
	font-weight: 500;
	user-select: none;
}

.steps_to_participate h3{
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.3px;
	margin:20px 0 10px 26px;
}

.participe_container li div svg{
	width: 20px;
	height: 20px;
	transform: translate(2px, 4px);
}

.participe_container li button{
	background-color: #292D3C;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 14px 20px;
	font-weight: 500;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	transition: all 0.15s linear;
}

.participe_container li button:hover{
	background-color: #161616;
	box-shadow: 0 0 0 4px inset #6272ad;
	transform: scale(1.02);
}

.participe_container li button:disabled{
	background-color: #292D3C;
	cursor: not-allowed;
	opacity: 0.5;
}

.participe_container li button:disabled:hover{
	background-color: #292D3C;
	box-shadow: none;
	transform: none;
}

.message{
	padding: 4px;
	color: #99a0bb;
	font-weight: 500;
	font-size: 13px;
	text-align: center;
	display: block;
	margin: 6px 30px 24px;
	animation: messageredtogray 2s ease forwards;
	animation-delay: 0.2s;
}

@keyframes messageredtogray{
	0%{
		color: #ff5100;
	}
	100%{
		color: #99a0bb;
	}
}
