body,
input,
textarea,
button,
select,
label,
p, a{
  font-family: Oswald, sans-serif;
}
header, footer{
	display:none!important;
}
main{
	height: 100vh;
	display:flex;
	align-items:center;
}
.bg-image{
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.bg-image:after{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color:
	rgba(0,0,0,.5);
	z-index: 0;
}
.content{
	position:relative;
	z-index:1;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;
	padding: 0 15px;
}
.logo-img{
	margin-bottom:20px;
	width:100%;
	max-width: 120px;
display: block;
margin-left: auto;
margin-right: auto;
}
.form-wrap{
	margin: 0 auto;
	max-width: 500px;
	width:100%;
	background-color: rgba(255, 255, 255, .7);
	border-radius: 10px;
	padding: 15px;
}
form{
	margin: 0 auto;
	max-width: 300px;
}
input {
    border: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 12px;
    color: #262f56;
    border-radius: 5px;
    height: 40px;
	width:100%;
}
label {
    padding-left: 0;
    color: #000;
    font-size: 18px;
    line-height: 22px;
    font-weight: 350;
	width:100%;
	text-align:left;
	padding-bottom: 10px;
}
.login-remember label{
	display: flex;
	align-items: center;
}
#rememberme{
	width:auto;
	margin-right:10px;
}
.login-submit input{
	background-color: #324fb7;
	color:#fff;
	font-size: 18px;
}
.login-submit input:hover{
	opacity: .8;
}