body {
	margin: 0;
	padding: 0;
	font-family: Arch;
	background-size: cover !important;
	overflow: hidden;
}
.login-wrap {
	width: 30%;
	margin: 100px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
}
.login-wrap .logo {
	text-align: center;
	padding: 20px 0;
}
.login-wrap .logo img {
	width: 100px;
}
.login-wrap .title {
	text-align: center;
	padding: 10px 0;
}
.login-wrap .title h3 {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #324352;
	font-size: 21px;
}
.login-wrap .title h3:after,
.login-wrap .title h3:before {
	content: '';
	border-top: 1px solid #004e90;
	margin: 0 10px 0 0;
	flex: 1 0 20px;
}
.login-wrap .title h3:after {
	margin: 0 0 0 10px;
}
.login-wrap .form {
	padding-top: 20px;
}
.login-wrap .form .form-group span {
	position: absolute;
	padding: 8px;
	color: #324352;
}
.login-wrap .form .form-group input {
	padding-left: 30px;
	height: 40px;
}
.login-wrap .form .form-group input:focus {
	border-color: #ced4da;
	box-shadow: unset;
}
.login-wrap .form button {
	background-color: #fff;
	color: #d7ac2b;
	border: 1px solid #d7ac2b;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
}
.login-wrap .form button:active,
.login-wrap .form button:focus,
.login-wrap .form button:hover {
	box-shadow: unset !important;
	background-color: #d7ac2b !important;
	color: #fff !important;
	border-color: unset !important;
}
.login-wrap .form button i {
	font-size: 14px;
	margin-right: 5px;
}
.login-wrap .alert {
	margin: 10px 0;
	font-weight: 700;
	text-align: center;
}
.login-wrap .alert p{
	margin-bottom: 0;
}
@media only screen and (max-width:1200px) {
	.login-wrap {
		width: 60%;
	}
}
@media only screen and (max-width:600px) {
	.login-wrap {
		width: 90%
	}
}
