
html{
	
	
	display: flex;
	flex:1;

}


body {
		
	font-family: LM, LGC, Verdana, sans-serif;
	
	font-size: 18px;
	font-weight: normal;
	
	 word-wrap: break-word;

	height: auto;
	width: 100%;
	 min-height: 100vh;
	margin: 0;
	padding: 0;
	display:flex;
	flex-direction: column;
	justify-content: space-around;
	align-items:center;
background-color:#EFEDE3;
text-align:center;
}
p{
	
}

@font-face {
	font-family: "LGC";

	src: url("font/LGC/LGC.otf") format("opentype");
	src :url("font/LGC/LGC.woff") format("woff"),
	url("font/LGC/LGC.woff2") format("woff2");
	

}
@font-face {
	font-family: "LM";

	src: url("font/LM/lm.otf") format("opentype");
	src: url("font/LM/lm.woff") format("woff"),	
	url("font/LM/lm.woff2") format("woff2");
	

}



form{
	display:flex;
	flex-direction: column;
	justify-content: space-around;
	align-items:center;
	width : 300px;
Max-width:100vh;
text-align: center;
}


.box{

word-wrap: break-word;
width:250px;
max-width:80vw;
margin: 20px 10px;
height: 40px;
	text-align: center;
	background-color:white;
	color:black;
	font-size: 16px;

	border:3px solid black;
}

.boxred{

word-wrap: break-word;
width:100px;
max-width:80vw;
margin: 20px 10px;
height: 40px;
	text-align: center;
	background-color:black;
	color:#EFEDE3;
	font-size: 16px;
	border:3px solid black;
}
a{
	text-decoration:none;
}
.boxlien{

word-wrap: break-word;
width:250px;
max-width:80vw;
margin: 20px 10px;
height: 40px;
	text-align: center;
	background-color:black;
	color:white;
	font-size: 16px;

	border:3px solid black;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.boxlien:hover{
	background-color :#E2E2E2;
	color:black;
} 

.boxlienk{

word-wrap: break-word;
width:250px;
max-width:80vw;
margin: 20px 10px;
height: 40px;
	text-align: center;
	background-color:#EFEDE3;
	color:black;
	font-size: 16px;

	border:3px solid black;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.boxlienk:hover{
	background-color :#E2E2E2;
	color:black;
} 

a{
	text-decoration:none;
}

/*je custome les boutons*/
input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  
    font: inherit;
  color: black;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid black;
  border-radius: 50%;
  

}
.important {
	color :red;
}
.error{
		word-wrap: break-word;
font-family: LGC;
	font-size: 16px;
margin-top:0px;
  color: red;
}
label{
	margin-bottom:0px;
}
.simple{
	word-wrap: break-word;
font-family: LGC;
	font-size: 16px;
margin-top:0px;
}
input[type="radio"]:checked {
 background-color:black;
}
input[type="submit"] {
width:250px;
max-width:80vw;
margin: 20px 10px;
height: 40px;
	text-align: center;
	background-color:black;
	color : white;
	font-size: 16px;
		font-family: LM, LGC, Verdana, sans-serif;
	
}

input[type="submit"]:hover{
	background-color :#EFEDE3;
	color:black;
} 

.point{
	width : 30px;
	height: 30px;
		display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color : black;
	border-radius:20px;
	color: white;
	margin: 10px;
}

.box-secret{
	display: block;
	margin: auto;
	border: none;
	background-color:white;
	padding: 0;
 width : 4.5ch;
 color : #000c6b;
  background: repeating-linear-gradient(90deg,#000c6b 0,#000c6b 1ch, transparent 0, transparent 1.5ch) 0 100%/ 4ch 2px no-repeat;
  text-transform: uppercase;
  font: 5ch monospace;
	letter-spacing: 0.5ch;

}
.code{
	display: block;
	margin: auto;
	border: none;

	padding: 0;
 width : 4.5ch;
 color :#990000;
 text-transform: uppercase;
  font: 5ch monospace;
	letter-spacing: 0.5ch;
	
}
.box-secret:focus {
  outline: none;
  color: #000c6b;
}
/*
$char-w: 1ch;
$gap: .5*$char-w;
$n-char: 7;
$in-w: $n-char*($char-w + $gap);

input {
	display: block;
	margin: 2em auto;
	border: none;
	padding: 0;
	width: $in-w;
	background: repeating-linear-gradient(90deg,dimgrey 0, dimgrey $char-w, transparent 0, transparent $char-w + $gap) 0 100%/ #{$in-w - $gap} 2px no-repeat;
	font: 5ch droid sans mono, consolas, monospace;
	letter-spacing: $gap;
	
	&:focus {
		outline: none;
		color: dodgerblue;
	}
}
*/
/*https://codepen.io/thebabydino/pen/mRrPwB*/