body
{
	overflow-x: hidden;
}
#corps
{
	background-color: #f2f3f4;
	overflow-x: hidden;
}
#contenu
{
	min-height: calc(100vh - 50px);
	width: 300vw;
	display: flex;
	flex-direction: row;

	transition: transform 0.5s ease;
	transform: translateX(-100vw);
}
#contenu > div
{
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*----- Partie commune à la conenxion et la création de compte -----*/
.bloc_central
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo
{
	margin: 10px;
	width: 50%;
}
.img_logo
{
	width: 100%;
}
/*-----*/

/*-----  -----*/
/*--- Formulaire ---*/
#form_creer_compte
{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
}

.form_popup_style
{
	border-radius: 10px;
	box-shadow: rgb(200, 200, 200) 2px 2px 10px;
	background-color: #FFFFFF;
	padding: 30px 30px 30px 30px;
}

#form_connexion, .step_creer_compte, #form_mdp_oublie
{
	flex: 1;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.step_creer_compte:last-child
{
	align-items: center;
}

.label_text_fields
{
	font-size: 20px;
}

.text_input
{
	width: 100%;
	height: 30px;
	font-size: 18px;
	box-sizing: border-box;
}
.input_margin
{
	margin-bottom: 20px;
}

.creer_compte_field_info
{
	font-size: 16px;
	margin-top: 5px;
	margin-bottom: 10px;
}
.info_inline_image
{
	height: 20px;
	vertical-align: middle;
}

#captcha_connexion
{
	align-self: center;
	display: none;
}

#captcha_mdp_oublie, #captcha_creer_compte
{
	align-self: center;
}

#captcha_creer_compte
{
	margin-bottom: 20px;
}

.validate_button
{
	width: 100%;
	align-self: center;
	font-size: 22px;
	padding: 3px;
	margin-top: 20px;
	background-color: rgb(128, 222, 234);
	box-shadow: none;
	
}
/*---*/

#connexion_tools
{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

#creer_compte_tools
{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

#mdp_oublie_tools
{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

#connexion_tools > p, #creer_compte_tools > p, #mdp_oublie_tools > p
{
	font-size: 18px;
	margin-top: 10px;
	text-align: center;
	cursor: pointer;
}

#input_pdc_creer_compte + label
{
	font-size: 14px;
}

#bloc_pdc_creer_compte
{
	margin-bottom: 20px;
}

#lien_pdc_creer_compte
{
	text-decoration: underline;
}



#creer_compte_title
{
	font-size: 32px;
	margin-bottom: 20px;
	text-align: center;
}

#personal_data
{
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
#personal_data > div
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

#creer_compte_explanation_title
{
	font-size: 24px;
}

#creer_compte_explanation
{
	font-size: 16px;
	text-align: center;
	margin-bottom: 20px;
}

.validate_buttons_line
{
	display: flex;
	width: 100%;
}

.secondary_button
{
	background-color: rgb(195,195,195);
}

.validate_buttons_line > *
{
	margin: 0 10px 0 10px;
	width: auto;
}
.validate_buttons_line > *:first-child
{
	flex: 1;
}
.validate_buttons_line > *:last-child
{
	flex: 2;
}

#msg_spam
{
	margin-top: 5px;
	font-size: 20px;
	color: red;
	text-align: center;
}

#img_msg_spam
{
	height: 20px;
	vertical-align: baseline;
}

/*!!!!! CODE DES PAGES DE PLUS DE 1024 PX DE LARGE !!!!!*/
@media (min-width: 1024px)
{
	.bloc_central
	{
		width: 35vw;
	}
}



/*!!!!! CODE DES PAGES DE MOINS DE 1023 PX DE LARGE !!!!!*/
@media (max-width: 1023px)
{
	.bloc_central
	{
		width: 80vw;
	}
}