html
{
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body
{
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	
	font-family: Verdana, sans-serif;	
	
	/* background-color: var(--GrenatC); */
	/* background-image: url("../images/Bg_3_1920x1871.jpg"); */
	/* background-image: url("../images/Bg_GrisC_16-9.jpg"); */
	/* background-position: top left; */
	/* background-attachment: fixed; */
	/* background-repeat: no-repeat; */
	/* background-size: auto 100%; */
	/* background-size: cover; */
}

::selection
{
	background: black;
	color: white;
}

/****************************/
/****************************/
/****************************/

.PageOublieMdP
{
	height: 100%;
	width: 100%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	position: relative;
}
	.PageOublieMdP:before
	{
		width: 100%;
		height: 100%;
		
		content:'';
		
		position: absolute;
		
		/* background-image: url("../images/Bg_3_1920x1871.jpg"); */
		background-image: url("../images/Bg_GrisC_16-9.jpg");
		/* background-position: top left; */
		background-attachment: fixed;
		background-repeat: no-repeat;
		/* background-size: auto 100%; */
		background-size: cover;
		opacity: 0.5;
	}

.BlocOublie
{
	/* background-color: purple; */
	
	width: calc(60% - 5px);
	max-width: 650px;
	min-width: 350px;
	height: calc(40% - 5px);
	min-height: 350px;	
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	z-index: 2;
}

	.Haut
	{
		height: 80%;
				
		border-width: 3px;
		border-style: solid;
		border-color: var(--Rose);
		
		background: linear-gradient(to bottom right, var(--GrenatC) 50%, var(--GrenatF));
		
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		
		/* padding-bottom: 10px; */
		
		font-family: QATAR, Verdana, sans-serif;
		color: var(--GrisC);
	}
			
	.Bas
	{
		/* width: 100%; */
		height: 20%;
		
		/* background-color: red; */
				
		display: flex;
		justify-content: center;
		align-items: center;
	}

.Titre
{
	width: 85%;
	height: 30%;
	/* margin-bottom: 30px; */
	
	border-bottom: 3px solid var(--GrisC);
	
	font-size: 3em;
	
	/* background-color: red; */
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	text-align: center;
}

.BlocCoeur
{
	width: 100%;
	height: 70%;
	
	/* background-color: green; */
	
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	
	/* box-sizing: border-box; */
}

.Texte
{
width: calc(100% + 6px);
height: 50px;

background: var(--Rose);
				
display: flex;

position: relative;
}
	/*Triangle Droit*/
	.Texte:after 
	{
		content:"";
		
		position: absolute;
		top: 0px;
		right: -25px;
		
		height: 0;
		width: 0;
		
		border-style: solid;
		border-width: 25px 0 25px 25px;
		Border-color: transparent transparent transparent var(--Rose);
	}

	/*Triangle Gauche*/
	.Texte:before
	{
		content:"";
		
		position: absolute;
		top: 0px;
		left: -25px;
		
		height: 0;
		width: 0;
		
		border-style: solid;
		border-width: 25px 25px 25px 0;
		Border-color: transparent var(--Rose) transparent transparent;
	}

.TexteIn
{
	width: 100%;
	height: 100%;
	background: var(--Rose);
	
	border: none;
	
	text-align: center;
	
	font-size: 1.2em;
	font-family: QATAR, Verdana, sans-serif;
	color: var(--GrisC);
}
	.TexteIn:focus
	{
		/* border: 1px solid var(--Bonus_1); */
		outline: none;
	}
	.TexteIn::placeholder
	{
		color: var(--GrisC);
	}

/***************/
/*
/* Class ERROR */
/*
/***************/

.Error
{
	/* height: 20px; */
	width: 80%;
	
	padding: 5px 15px;
	box-sizing: border-box;
	
	background-color: var(--Bleu);
	background: linear-gradient(to right, var(--GroupeG), Navy);
	
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	
	align-self: flex-start;
	margin: 0px 5px;
	
	border-radius: 7px;
	
	color: var(--GrisC);
	font-family: Verdana, sans-serif;
}

/********************/
/*
/* Bouton Envoyer ***/
/*
/********************/

.BnEnvoyer
{
	width: auto;
	padding-left: 5px;
	padding-right: 5px;
	height: 50px;
	display: inline-block;
		
	background-color: var(--Bleu);
	
	border: none;
	
	color: var(--GrisC);
	font-size: 1.3em;
	font-family: "QATAR", Verdana, sans-serif;
	letter-spacing: 0.1em;
	
	cursor: pointer;
	
	position: relative;
}

.BnEnvoyer:hover 
{
  color: var(--Bleu);
  background-color: var(--GrisC);
  
  position: relative;
  top: 5px;
}

/*Triangle droit*/
.BnEnvoyer:after 
{
	content:"";
	
	position: absolute;
	top: 0px;
	right: -25px;
	
	height: 0;
	width: 0;
	
	border-style: solid;
	border-width: 25px 0 25px 25px;
	Border-color: transparent transparent transparent var(--Bleu);
}
.BnEnvoyer:hover:after 
{
	Border-color: transparent transparent transparent var(--GrisC);
}

/*Triangle Gauche*/
.BnEnvoyer:before
{
	content:"";
	
	position: absolute;
	top: 0px;
	left: -25px;
	
	height: 0;
	width: 0;
	
	border-style: solid;
	border-width: 25px 25px 25px 0;
	Border-color: transparent var(--Bleu) transparent transparent;
}
.BnEnvoyer:hover:before
{
	Border-color: transparent var(--GrisC) transparent transparent;
}


@media (max-width: 700px)
{
	.Titre
	{	
		font-size: 2em;
	}
}