#signup_popup_container
{
	width : 100%;
	height : 100%;
	background-image : url('../common/images/bg_alpha.png');
	background-size : cover;
	position : fixed;
	top : 0px;
	left : 0px;
	display : flex;
	min-width : 1024px;
	flex-direction : column;
	align-items : center;
	justify-content : center;
	font-family: "Calibri", "Georgia", "Arial", serif;
	display : none;
}

#signup_popup
{
	width : 60%;
	background-color : #D3D3D3;
	display : flex;
	flex-direction : column;
	box-shadow : 0px 0px 5px 5px #D3D3D3;
	padding : 0px;
	flex-direction : column;
}

#signup_popup h1
{
	width : calc(100% - 20px);
	margin : 0px;
	padding : 0px;
	padding-top : 10px;
	padding-bottom : 10px;
	text-align : center;
	background-color : var(--main_blue);
	color : white;
	text-shadow: black 0.1em 0.1em 0.2em;
	font-size : 1.5em;
	text-align : center;
	margin : auto;
	margin-top : 10px;
}

#close_signup_icon
{
	display : inline-block;
	text-align : right;
	padding : 0px;
	margin : 0px;
	margin-left : calc(100% - 30px);
	width : 25px;
	height : 25px;
	cursor : pointer;
	z-index : 999999999;
}

#signup_popup h1
{
	
}

#signup_popup form
{
	display : flex;
	justify-content : center;
	margin : 0px;
	padding : 0px;
	height : 100%;
	min-height : 250px;
	flex-direction : column;
	background-color : white;
	padding-top : 20px;
	width : calc(100% - 22px);
	margin-left : 10px;
	border : 1px solid var(--main_blue);
	margin-bottom : 10px;
}

#line_1
{
	width : 100%;
	display : flex;
	align-items : center;
	justify-content : center;
}

#line_2
{
	display : flex;
	flex-direction : column;
}

#form_left
{
	width : 50%;
	border-right : 1px solid white;
	flex : 1;
	height : 100%;
	display : flex;
	flex-direction : column;
	align-items : center;
}

#form_right
{
	width : 50%;
	flex : 1;
	height : 100%;
	display : flex;
	flex-direction : column;
	align-items : center;
}

#form_left h2, #form_right h2
{
	width : calc(95% - 10px);
	margin : 0px;
	padding : 0px;
	color : white;
	background-color : var(--main_blue);
	margin : auto;
	border : 1px solid var(--main_blue);
	padding-left : 10px;
	box-shadow : 5px 5px 5px 0px rgba(0,0,0,0.25);
}

#form_left p, #form_right p
{
	width : calc(95% - 20px);
	border : 1px solid var(--main_blue);
	border-top : 0px;
	margin : 0px; 
	padding : 0px;
	padding : 10px;
	background-color : white;
	flex : 10;
	display : block;
	box-shadow : 5px 5px 5px 0px rgba(0,0,0,0.25);
}

.small
{
	font-size : 0.8em;
	color : red;
}

#line_2 h2
{
	width : calc(100% - 52px);
	margin : 0px;
	padding : 0px;
	color : white;
	background-color : var(--main_blue);
	border : 1px solid var(--main_blue);
	margin-left : 20px;
	margin-right : 20px;
	margin-top : 20px;
	padding-left : 10px;
}

#line_2 p
{
	width : calc(100% - 62px);
	margin : 0px;
	margin-left : 20px;
	margin-right : 20px;
	background-color : white;
	border : 1px solid var(--main_blue);
	padding : 10px;
	box-shadow : 5px 5px 5px 0px rgba(0,0,0,0.25);
}

#buttons_container
{
	width : 100%;
	margin : 0px;
	padding : 0px;
	display : flex;
	justify-content : space-around;
	align-items : center;
	margin-top : 20px;
	margin-bottom : 10px;
}

#close_signup_popup, #submit_signup
{
	border : none;
	font-size : 1.2em;
	color : white;
	display : inline-block;
	cursor : pointer;
	padding-left : 20px;
	padding-right : 20px;
	padding-top : 5px;
	padding-bottom : 5px;
}

#close_signup_popup
{
	background-color : red;
}

#submit_signup
{
	background-color : green;
}

#line_1 label
{
	display : inline-block;
	width : 55%;
	margin : 0px;
}

#line_2 input
{
	margin-bottom : 5px;
}

#user_login, #user_mail, #confirm_user_mail, #user_password, #confirm_user_password, #user_last_name, #user_name, #user_address, #user_city, #user_CP, #user_phone, #user_company
{
	width : calc(40% - 4px);
	margin : 0px;
	min-width : 100px;
	display : inline-block;
	margin-bottom : 5px;
}

#user_civilite, #user_country
{
	width : calc(40% + 2px);
	margin-bottom : 5px;
}

.form_error
{
	width : 100%;
	display : inline-block;
	color : red;
	font-style : italic;
	font-size : 1.1em;
	text-align : center;
}