@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body{
	background-image: url(membres/papiers/deskwlp.jpg); 
	background-position: center;
	background-size : coover;
	display: flex;
	justify-content : center;
	align-items: center;	
	height : 100vh;
}
section{
	padding: 30px;
	width: 420px;
	border-radius: 20px;
	background-color: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(5px); /* c'est le secret pour flour le formulair en arriere plan */
}
section h1{
	font-size: 30px;
	text-align: center;
	color :#fff;
	margin-bottom: 20px;
}
.input-box{ 
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}
.input-box input{
	width : 100%;
	padding : 5px;
	border-radius: 25px;
	outline: none;
	background-color: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	color: #fff;
	padding-right: 40px;
}
.input-box input::placeholder{
	color: #fff;
}
.input-box i {
	position : absolute;
	transform : translateY(-50%);
	right:20px;
	top:50%;
	color:#fff;
}
.remember-forgot{
	display : flex;
	justify-content : space-between;
	align-items : center;
	font-size : 12px;
	color : #fff;
}
.remember-forgot a{
	color: #fff;
	text-decoration : none;
	transition : 0.5s;
	font-weight : bold;
}
.remember-forgot a:hover, .register-link a:hover {
	text-decoration : underline;
	color:yellow;
}
.login-btn{
	width: 100%;
	padding : 4px;
	border-radius : 25px;
	outline : none;
	border : 0;
	font-weight : bold;
	cursor : pointer;
	border : 2px solid transparent;
	transition : 0.5s;
}
.login-btn:hover{
	background : transparent;
	border : 2px solid rgba(255,255,255,0.2);
	color : #fff;
}
.register-link{
	text-align : center;
	margin-top : 15px;
	color : #fff;
	font-size : 12px;
	justify-content : space-between;
	display : flex;
}
.register-link a{
	color: #fff;
	text-decoration : none;
	transition : 0.5s;
	font-weight : bold;
}
.register-link a:hover{
	text-decoration : underline;	
}
.msg-info{
	border-radius : 15px;
	/*background-color : red; */
}