#login_popup_container
{
	width : 100vw;
	height : 100vh;
	margin : 0px;
	padding : 0px;
	display : flex;
	position : fixed;
	top : 0px;
	left : 0px;
	background-image: url('../common/images/bg_alpha.png');
	background-size : cover;
	z-index : 999999;
	justify-content : center;
	align-items : center;
	display : none;
}

#login_popup
{
	width : 400px;
	background-color : #D3D3D3;
	position : fixed;
	top : 10%;
	left : calc(50% - calc(400px / 2));
	display : flex;
	flex-direction : column;
	box-shadow : 0px 0px 5px 5px #D3D3D3;
	padding-top : 20px;
}

#login_img
{
	width : calc(100% - 20px);
	margin : 10px;
	padding : 0px;
}

#login_img img
{
	width : 80%;
	height : auto;
	margin : 0px;
	padding : 0px;	
	display : block;
	margin : auto;
}

#login_popup h1
{
	margin : 0px;
	padding : 0px;
	width : 100%;
	font-size : 1.3em;
	text-align : center;
	border-bottom : 1px solid black;
}

.h3_separator
{
	text-align : center;
	border-bottom : 1px solid black;
	display : inline-block;
	width : 100%;
	font-weight : bold;
	font-size : 1.2em;
	margin-top : 5px;
	margin-bottom : 10px;
}

#facebook_connect
{
	width : calc(100% - 2px);
	height : 30px;
	background-color : #3b5998;
	color : white;
	display : block;
	line-height : 30px;
	text-align : center;
	text-decoration : none;
	border : 1px solid white;
	font-size : 1.5em;
	margin : 0px;
	margin-bottom : -10px;
}

#gmail_connect
{
	width : calc(100% - 2px);
	height : 30px;
	background-color : #FFFFFF;
	color : #d54b3d;
	display : block;
	line-height : 30px;
	text-align : center;
	text-decoration : none;
	border : 1px solid #d54b3d;
	font-size : 1.5em;
	margin : 0px;
	margin-bottom : -10px;
}

#create_account_button
{
	width : calc(100% - 0px);
	height : 30px;
	background-color : var(--main_blue);
	color : white;
	display : block;
	line-height : 30px;
	text-align : center;
	text-decoration : none;
	font-size : 1.5em;
	margin : 0px;
	margin-top : 10px;
}

#lost_password
{
	color : black;
}

#close_login_icon
{
	position : fixed;
	top : calc(10% );
	left : calc(50% + calc(350px / 2));
	width : 25px;
	height : 25px;
	z-index : 999;
}

#login_form p
{
	margin-bottom : 0px;
}