/* --- fichier CSS spécifique à la page index.php --- */
/* ------------------------------------------------------------- */

body {
	padding:0;
	margin:0;
	
	/* image de fond */
	background-image:url(img/perso_CEB.PNG);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: left bottom;	
	background-size: auto 95%;	
}


/* ---------------- cadre d'authentification ------------------- */

div#cadre_authentification {
	/* largeur du cadre : 500 pixels */
	width: 500px;
	/*le cadre est centré verticalement et positionné à 100px du bord droit de l'écran*/
	position: fixed;
    right: 100px;
    top: 50%; /* poussé de la moitié de hauteur du référent */
	transform: translateY(-50%);
	/* bordure rouge 2 pixels angles arrondis */
    border: 2px rgb(195,8,69) solid;
    border-radius: 10px;
    /* couleur du texte : bleu-gris */
	color:rgb(81,126,149);
	font: 15px cinzel, arial, sans-serif;
	background-color: rgba(255,255,255,0.8); /* fond blanc avec opacité */	
	box-shadow: 1px 1px 12px #555;
}

div#en_tete_authentification {
	border-bottom:1px solid rgb(195,8,69);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
}

div#logo_CEB {	
	height:85px;
}

img.logo {
	height:inherit;
	max-width:100%;
	margin-top: 10px;	
}

div#titre_authentification {
	margin-top: 10px;	
	font-weight: bold;
}

#formulaire_authentification {
	padding: 50px; /* marges internes */	
	margin: auto;	
	text-align: right;
}

div#formulaire_authentification div.field {
	padding-bottom: 5px;
}

input:focus{
	background-color: rgb(210,210,210);
}

.submit {
	margin-left:40px;
}

div.error_msg {
	height:30px;
	line-height:30px;
	color: rgb(255, 0, 0); /*rouge*/
	font-style:italic;
}

/* cadre informations de contact */
div#cadre_contact {
	/* position et taille du cadre */
	position: fixed;
	right: 100px;
	bottom: 40px;
	min-height:60px;
	width:50%;
	/* bordure rouge 2 pixels angles arrondis */
    border: 1px rgb(215,98,143) solid;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.8); /* fond blanc avec opacité */
    display: flex;	
}

div#contenu_cadre_contact {
	margin: auto;
	text-align:center;
    font: 15px cinzel, arial, sans-serif;
    color:rgb(81,126,149); /* bleu gris */
}

div#cadre_message_acces {
	position: fixed;
	left: 100px;
	top: 50%; /* poussé de la moitié de hauteur du référent */
	transform: translateY(-50%);
	width: 30%;
	min-height: 60px;
	border: 2px rgb(195,8,69) solid;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.8); /* fond blanc avec opacité */	
    display:flex;
}	

div#contenu_cadre_message_acces {
	font: 15px cinzel, arial, sans-serif;
	margin: auto;
	text-align: center;
	color: black;
	padding:10px;
}

