

/**************************************************************************************
 *								GENERAL
 **************************************************************************************/
html, body
{
	padding: 0px;		/* sinon, le body ne prend pas toute la hauteur...*/
	margin: 0px;
	height: 100%;
	background: var(--background-color);
	background: var(--index-background);
	font: var(--dft-font);
}
body
{
	height: 90%;
	padding-top: 10px;
	background: var(--background-color);
	background: var(--background);
	background: var(--index-background);
	background-repeat: no-repeat;
	font-size: 16px;
	color: var(--box-content-text-color);
}
a
{
	color: var(--link-text-color);
	text-shadow: var(--link-text-shadow);
}
a:hover
{
	color: var(--link-hover-text-color);
	text-shadow: var(--link-hover-text-shadow);
}
 

/**************************************************************************************
 *									LOGO
 **************************************************************************************/
#logo, #logoPerso
{
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
#logo img, #logoPerso img{
	width: var(--logo-big-width);
	height: var(--logo-big-height);
	margin: var(--logo-big-margin);
}

/**************************************************************************************
 *								CLASSE BOITE
 **************************************************************************************/
.boite
{
	width:285px;
	padding: 10px;
	margin: auto auto 30px auto;
	background-color: var(--box-content-background);
	border-radius: var(--border-radius);
	border: 1px solid var(--separator-color);
	text-align: center;
	
	position: relative;
}

/**************************************************************************************
 *								CLASSE CACHE
 **************************************************************************************/
.cache{
	display: none;
}

/**************************************************************************************
 *								NAVIGATEUR INTERDIT
 **************************************************************************************/
#nav{
	font-weight: bold;
}
/**************************************************************************************
 *								MESSAGES D'ERREUR
 **************************************************************************************/
#messageErreur{
	font-weight: bold;
}
#messageErreur .important
{
	font-size: 1.2em;
}
 
/**************************************************************************************
 *								FORMULAIRE AUTH
 **************************************************************************************/
#auth_txt{
	text-align: center;
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 20px;
}


#auth .form-content{
	display: flex;
	flex-direction: column;
}

.form-content .champ {
	height: 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.form-content .password {
	height: 35px;
	/*padding-top: 10px;*/
	align-items: flex-start;
}



/*#auth > div
{
	clear:both;
	width: 300px;
	height: 40px;
	
	line-height: 40px;
	margin: auto;
}*/

#auth div.password{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

div.nomChamp
{
	width: 130px;
	float: left;
	text-align: left;
}

#auth div.langues
{
	margin-top:25px;
}

#auth div.langues img
{
	cursor:pointer;
}

input.paramChamp
{
	width: 130px;
	/*margin-top: 9px;*/
	padding: 3px;
	border: 1px solid var(--secondary-color);
	border-radius: var(--border-radius);
	background: white;
}

input.paramChamp:focus
{
	outline:none;
	border: 1px solid var(--primary-color);
}

input[type="button"]
{
	height: 27px;
	width: 100px;
	padding: 3px 10px;
	margin: 0;

	cursor: pointer;
	
	border: var(--btn-border);
	border-radius: var(--btn-border-radius);
	overflow: hidden;
	
	background: var(--btn-background);
	
	font-weight: bold; 
	color: var(--btn-text-color);
	-webkit-appearance: none;
	text-shadow: var(--btn-text-shadow);
}
input[type="button"]:hover{
	background: var(--btn-hover-background);
	color: var(--btn-hover-text-color);
	text-shadow: var(--btn-hover-text-shadow);
	border: var(--btn-hover-border);
}
.button_conteneur{
	height: 29px;
	width: 100px;
	line-height: 27px;
	margin: auto;
	margin-top: 25px;
}
.mask{
	overflow: hidden;
}
.round{
	border-radius: var(--border-radius);
}

/**************************************************************************************
 *								SSO
 **************************************************************************************/
 .ssoProviders {
	margin-top: 25px;
 }

 .sso_prompt{
	display: block;
	margin-top: -7px;
    color: var(--link-text-color);
    text-shadow: var(--link-text-shadow);
    font-size: .75em;
    cursor: pointer;
 }


/**************************************************************************************
 *								DRAPEAUX DE LANGUE
 **************************************************************************************/
 .langues{
	display: block;
	display: var(--languages-display);
 }
.langues img{
	height: 20px;
	margin-right: 5px;
}
.langues img:hover{
	box-shadow: var(--link-hover-text-shadow);
}

.langues img + img {
	margin-left: 5px;
	margin-right: 5px;
}

/**************************************************************************************
 *								EMAIL DE CONTACT
 **************************************************************************************/
#emailContact{
	clear:both;
	font-weight: bold;
}
#emailContact .important
{
	font-size: 1.2em;
}


/**************************************************************************************
 *								FOOTER
 **************************************************************************************/
#footer{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 8px 10px;
	font-size: 11px;
	line-height: 1.4;
	color: #999;
}
#footer a{
	color: #444;
	text-decoration: underline;
    text-shadow: none;
}
#footer a:hover{
	text-decoration: underline;
    color: var(--link-hover-text-color);
}
#footer .sep{
	margin: 0 6px;
	color: #ccc;
}
/* Sur les écrans trop courts, le footer fixe empièterait sur le contenu :
   on le replace dans le flux normal pour qu'il s'affiche après le contenu. */
@media (max-height: 600px){
	#footer{
		position: static;
		margin-top: 20px;
	}
}