body{
	font-family: Arial, sans-serif;
	margin: 0;
	background: #f8f9fd;
	background: url(../images/bg-login.jpg);
	background-size: cover;
}
.login-box{
	height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}
.login-box h1{
	margin: 0;
}
input{
	padding: 10px;
    min-width: 280px;
    border: 1px solid #005ba3;
}
input:focus{
	outline: none;
}
.login-logo{
	text-align: center;
	margin-bottom: 20px;
}
.bg-white{
	background: #fff;
}
.p-20{
	padding: 20px;
}
.mb-20{
	margin-bottom: 20px;
}
.logo-wrapper{
	box-shadow: 2px 2px 20px #ddd;
}
.d-flex{
	display: flex;
}
.input-group-wrapper{
	background: #005ba3;
	color: #fff;
}
.input-group-text{
	padding: 10px;
}
.btn-primary{
	background: #005ba3;
    color: #fff;
    padding: 10px;
    box-shadow: none;
    border: 1px solid #005ba3;
	width: 100%;
}
.btn-primary:hover{
	cursor: pointer;
	background: #07518c;
}
.btn-primary:active{
	outline: none;
}
#loading-icon {
	position: absolute;
    margin-left: 5px;
    opacity: 0;
    transition: .3s opacity;
}
.show-loading {
    opacity: 1 !important;
    transition: .3s opacity;
}