/* LOGIN FORM */
#login_wrapper{
	position: absolute;

	width: 100%;
	height: 100%;
	
	background-color: #EBEBEB;
	background-image: url('login_images/light_background.png');
    background-size: cover;
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

#login_logo{
	margin: 0 auto;
    margin-left: -40px;
	margin-bottom: 5px;
	
	width: 400px;
	height: 200px;    
    background-size: contain;
    background-repeat: no-repeat;
	
	background-image: url('login_images/Logo_ZO.png');
}

#login_logo_text{
	margin: 0 auto;
	margin-bottom: 16px;
	
	width: 160px;
	height: 45px;
    background-size: cover;
	
	background-image: url('login_images/energie_portaal_text.png');
	background-repeat: no-repeat;
}

.login_form, .login_register_form{
	width: 300px;
	margin: 10% auto;
}

.login_error_text{
	margin: 20px;
	
	color: #DD0000;

	font-style: italic;
}

/* placeholder styling for login */
::-webkit-input-placeholder {
	text-align: center;
	font-size: 19px;
	color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
	text-align: center;
	font-size: 19px;
	color: #000000;
}

::-moz-placeholder {  /* Firefox 19+ */
	text-align: center;
	font-size: 19px;
	color: #000000;
}

:-ms-input-placeholder {  
	text-align: center;
	font-size: 19px;
	color: #000000;
}

#login_form_input_box_wrapper{
	position: relative;
	
	overflow: hidden;
	
	width: 296px;
	
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
	border: 1px solid #0000003d;
	
	margin-bottom: 18px;
}

#login_form_input_box{
	position: absolute;
	
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	
	background-color: rgb(255, 255, 255);
	opacity: 0.5;
	box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.login_form input[type="text"],
.login_form input[type="password"]{
	position: relative;
	
	text-align: center;

	font-size: 19px;
	
	width: 296px;
	padding: 17px 0px;
	
	background: none;
	background-repeat: no-repeat;
}

.login_form input[type="text"]{
	background-image: url('login_images/mail_icon.svg');
	background-position: 20px 20px;
    opacity: 0.4;
	
	-webkit-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;

	border: none;
}

.login_form input[type="password"]{
	background-image: url('login_images/padlock.svg');
	background-position: 20px 18px;
    opacity: 0.4;
	
	-webkit-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;

	border-top:		1px solid #0000003d;
	border-right:	none;
	border-left:	none;
	border-bottom:	none;
}

.login_form input[type="submit"]{	
	width: 100%;
	height: auto;
	
	padding: 16px 0;
	
	border: 1px solid #F37321;
	background: #F37321;
	
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
	text-align: center;
	font-size: 19px;
	color: #FFFFFF;
	
	-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.3);
	box-shadow: 0 1px 1px 0 rgba(0,0,0,0.3);
}

.login_form input[type="submit"]:hover{	
	cursor: pointer;
	
	border: 1px solid #F37321BA;
	background: #F37321BA;
}

#login_forgotten_password{
	display: block;

	font-size: 14px;
	
	padding-top: 50px;
	
	color: #000000;
	
	text-decoration: none;
}

#login_forgotten_password:hover{
	text-decoration: underline;
}

/*
.login_form .row,
.login_register_form .row{
	overflow: auto;
	width: 100%;
	margin-bottom: 5px;
}

.login_form label,
.login_register_form label{
	float: left;
	width: 40%;
	display: none;
}

.login_form input[type="text"],
.login_form input[type="password"],
.login_register_form input[type="text"],
.login_register_form input[type="email"],
.login_register_form input[type="password"]{
	width: 60%;
}

.login_form input[type="submit"],
.login_register_form input[type="submit"]{
	float: right;
}

.login_form .error_message,
.login_register_form .error_message{
	color: #DD0000;
	font-style: italic;
} */