body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.login_page {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
	height: auto;
    min-height: 100vh;
    background: url(/img/gas.jpg) no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}
.login_page_background {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	background: rgba(10,43,90, .75);
}
.login_page_form {
    position: relative;
    width: 350px;
    padding: 40px 30px;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0 0 20px 10px #fdfdfd33;
	background: rgba(0,0,0, .3);
}
.login_page_form form div {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.login_page_form form div:last-child {
	margin-bottom: 0;
	margin-top: 30px;
}
.login_page_form form div input {
	position: relative;
	width: calc(100% - 50px);
	height: 40px;
	padding: 0 10px 0 40px;
	display: inline-block;
	outline: none;
	border: none;
	color: #000000;
	font-size: 15px;
	background-color: #FFFFFF !important;
    background-repeat: no-repeat;
    background-position: left 10px center;
	background-size: 20px;
}
.login_page_form form div input#username {
    background-image: url(../../img/user.png) !important;
}
.login_page_form form div input#password {
    background-image: url(../../img/padlock.png) !important;
}
.login_page_form div input:focus, 
.login_page_form div input:active {
	box-shadow: 0 0 10px 0 #4d4d4d;
}
.login_page_form form div span {
	position: relative;
	width: 100%;
	display: block;
	color: red;
	font-size: 13px;
	margin-top: 5px;
}
.login_page_form form div button {
	position: relative;
	width: 100%;
	height: 40px;
	background: #007DC0;
	outline: none;
	border: 1px solid #0073B1;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 15px;
	color: #FFFFFF;
	cursor: pointer;
}
.login_page_form form div button:hover, 
.login_page_form form div button:focus, 
.login_page_form form div button:active {
	background: #006398;
	border: 1px solid #005C8E;
}
.login_page_form form div button:focus, 
.login_page_form form div button:active {
	box-shadow: 0 0 10px 0 #4d4d4d;
}
.href_citizen, 
.href_station_map {
	position: absolute;
	color: #c2c7d0;
	text-decoration: none !important;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	top: 25px;
	left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.href_station_map {
	top: 50px;
}
.href_citizen:hover, 
.href_station_map:hover {
	color: #FFFFFF;
}
.href_citizen p, 
.href_station_map p {
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 950px) {
	body {
		min-height: 100%;
	}
	.login_page {
		position: absolute;
		height: 100%;
		min-height: 250px;
	}
}
@media only screen and (max-width: 500px) {
	.login_page {
		min-height: 210px;
	}	
	.login_page_form {
		width: 300px;
		padding: 30px 20px;
	}
	.login_page_form form div:last-child {
		margin-top: 25px;
	}	
	.login_page_form form div input {
		width: calc(100% - 45px);
		height: 35px;
		padding: 0 10px 0 35px;
		font-size: 14px;
		background-size: 15px;
	}
	.login_page_form form div button {
		height: 35px;
		letter-spacing: 0.5px;
		font-size: 14px;
	}
	.href_citizen {
		font-size: 15px;
		top: 15px;	
	}
}
@media only screen and (max-width: 400px) {
	.login_page_form {
		width: calc(75% - 60px);
		overflow: hidden;
	}
}