body {
	margin: 0;
	padding: 0;
	min-width: 200px;
	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: end;
    width: 100%;
	height: auto;
    min-height: 100vh;
    background: url(/img/bg.jpg) no-repeat !important;
    background-size: cover !important;
    background-position: left center !important;
}
.login_page_background {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	background: rgb(0 0 0 / 46%);
}
.login_page_form {
    position: relative;
	margin-right: 100px;
    width: 400px;
    padding: 60px 50px;
	border-radius: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	box-shadow: 0 0 40px 5px #f54b556b;
	background: rgba(0,0,0, 0);
}
.login_page_form form div {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}
.login_page_form form div:last-child {
	margin-bottom: 0;
	margin-top: 60px;
}
.login_page_form form div input {
	position: relative;
	width: calc(100% - 65px);
	height: 50px;
	border-radius: 10px;
	padding: 0 15px 0 50px;
	display: inline-block;
	outline: none;
	border: none;
	color: #303d48;
	font-size: 18px;
	background-color: #FFFFFF !important;
    background-repeat: no-repeat;
    background-position: left 15px center;
	background-size: 28px;
}
.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 ::-webkit-input-placeholder {
	color: #303d48;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}
.login_page_form div ::-moz-placeholder {
	color: #303d48;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}
.login_page_form div :-ms-input-placeholder {
	color: #303d48;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}
.login_page_form form div span {
	position: relative;
	width: 100%;
	display: block;
	color: red;
	font-size: 13px;
	margin-top: 5px;
	font-weight: bold;
	letter-spacing: 0.5px;
}
.login_page_form form div button {
	position: relative;
	width: 100%;
	height: 50px;
	border-radius: 10px;
	background: #f54b5594;
	outline: none;
	border: 1px solid #f54b5594;
	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: #F54B55;
	border: 1px solid #F54B55;
}
.login_page_form form div button:focus, 
.login_page_form form div button:active {
	box-shadow: 0 0 10px 0 #4d4d4d;
}
@media only screen and (max-width: 950px) {
	.login_page {
		justify-content: center;
	}
	.login_page_form {
		margin-right: 0;
		width: 350px;
		padding: 50px 40px;
	}	
	.login_page_form form div {
		margin-bottom: 30px;
	}
	.login_page_form form div:last-child {
		margin-bottom: 0;
		margin-top: 50px;
	}
	.login_page_form form div input {
		width: calc(100% - 60px);
		height: 45px;
		padding: 0 15px 0 45px;
		font-size: 16px;
		background-position: left 10px center;
		background-size: 24px;
	}
	.login_page_form div ::-webkit-input-placeholder {
		font-size: 15px;
	}
	.login_page_form div ::-moz-placeholder {
		font-size: 15px;
	}
	.login_page_form div :-ms-input-placeholder {
		font-size: 15px;
	}
	.login_page_form form div button {
		height: 45px;
	}
}
@media only screen and (max-width: 530px) {
	.login_page_form {
		width: 300px;
		padding: 30px 20px;
	}
	.login_page_form form div {
		margin-bottom: 25px;
	}
	.login_page_form form div:last-child {
		margin-bottom: 0;
		margin-top: 35px;
	}
	.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;
	}
}
@media only screen and (max-width: 400px) {
	.login_page_form {
		width: 75%;
	}
}