body, html {
	margin: 0;
	padding: 0;
	background: #eee;
	min-height: 100%;
	height: 100%;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
}
* {
	box-sizing: border-box;
}
.form-login {
	background: #fff;
	padding: 20px;
	box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),0 0.9375rem 1.40625rem rgba(4,9,20,0.03),0 0.25rem 0.53125rem rgba(4,9,20,0.05),0 0.125rem 0.1875rem rgba(4,9,20,0.03);
	background-clip: border-box;
	border: 1px solid rgba(26,54,126,0.125);
	border-radius: .25rem;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}
.btn {
    position: relative;
    transition: color 0.15s,background-color 0.15s,border-color 0.15s,box-shadow 0.15s;
    font-size: .8rem;
    color: #fff;
	background-color: #3f6ad8;
	border-color: #3f6ad8;
	outline: none !important;
	display: inline-block;
	font-weight: 400;
	color: #495057;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	cursor: pointer;
	color: #eee;
	border: 1px solid transparent;
	    border-top-color: transparent;
	    border-right-color: transparent;
	    border-bottom-color: transparent;
	    border-left-color: transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
}
.btn:hover {
    color: #fff;
    background-color: #2955c8;
    border-color: #2651be;
}
.error {
	color: firebrick;
	font-size: 13px;
}