*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: url(../../images/mainbg.jpg) 0 0 no-repeat;
	background-size: cover;
}

.login_wrapper{
    max-width: 560px;
    margin: auto;
    width: 100%;
    display: flex;
    text-align: center;
    font-family: 'Muli', sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login_container{
	background: #FFF;
	border-radius: 15px;
	padding: 70px 80px;	
	width: 100%;
}

.login_title{
	font-weight: 600;
	font-size: 42px;
	text-transform: uppercase;
	margin:25px 0; 
}

.login_container p{
	font-size: 18px;
	color: #333;
	margin-bottom: 25px;
}

	.form_group {
    margin-bottom: 30px;
    position: relative;
}

.form_group .fieldicon {
    position: absolute;
    left: 15px;
    top: 8px;
}


.form_group input[type="text"], .form_group input[type="password"]{
	font-family: 'Muli', sans-serif;
    border: none;
    width: 100%;
    border-bottom: #333 solid thin;
    height: 40px;
    color: #333333;
    font-size: 18px;
    padding-left: 45px;
}

.form_action input[type="submit"]{
	font-family: 'Muli', sans-serif;
	background: #033077;
	font-size: 18px;
	border-radius: 3px;
	max-width:210px;
	line-height: 56px;
	width: 100%;
	border: none;
	color: #FFF; 
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: all ease 0.3s;
}

.form_action input[type="submit"]:hover{
	background: #bd9417;
}

div#loader {
	position: fixed;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 1;
	background: rgba(0,0,0,0.3);
	top: 0;
	left: 0;
}

	div#loader img {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		display: block;
		margin: auto;
	}

.loginErrorMsg {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
	margin-bottom: 20px;
	position: relative;
	padding: .50rem 1.25rem;
	border: 1px solid transparent;
	border-radius: .25rem;
	font-size: 18px;
}



input {
	-webkit-appearance: none;
	border-radius: 0;
}

@media(max-width: 640px){

	.login_wrapper{
		padding: 0 20px;
	}

	.login_container{
		padding: 70px 40px;
	}

}


@media(max-width: 480px){

	.login_container {
    	padding: 50px 40px;
	}

	.login_title{
		font-size: 28px;
		margin: 25px 0 10px 0;
	}


}
