html,body{
	height:100%;
	width:100%;
	margin:0;
	padding:0;
}
body{
	font-family:'Quicksand', sans-serif;
	font-size:12px;
	font-weight:400;
	color:#272525;
}
a{
	text-decoration:none;
	color:#d2232a;
}
main{
	display:flex;
	justify-content:center;
	align-items:center;
	height:100%;
}
.center{
	text-align:center;
}
.brand-login {
	display:flex;
	width:100%;
	justify-content:center;
	align-items:center;
	font-size:18px;
	font-weight:700;
	line-height:20px;
	margin:0;
	padding:15px;
	box-sizing:border-box;
}
.chevron{
	height:20px;
	width:auto;
}
h1{
	font-size:14px;
}
.visually-hidden,.visually-hidden-focusable:not(:focus){
	position:absolute!important;
	width:1px!important;
	height:1px!important;
	padding:0!important;
	margin:-1px!important;
	overflow:hidden!important;
	clip:rect(0,0,0,0)!important;
	white-space:nowrap!important;
	border:0!important;
}
form{
	width:100%;
}
form input[type="text"] {
    height:32px;
	width:90%;
	max-width:380px;
	min-width:155px;
    box-sizing:border-box;
    border-radius:5px;
	border:1px solid #272525;
    padding:0 20px;
    outline:none;
	text-align:center;
}
form input[type="text"]:active, form input[type="text"]:focus{
    border:1px solid #d2232a;
	box-shadow:0 0 0 .25rem rgba(210,35,42,.5);
}
form input[type="password"] {
    height:32px;
	width:90%;
	max-width:380px;
	min-width:155px;
    box-sizing:border-box;
    border-radius:5px;
	border:1px solid #272525;
    padding:0 20px;
    outline:none;
	text-align:center;
}
form input[type="password"]:active, form input[type="password"]:focus{
    border:1px solid #d2232a;
	box-shadow:0 0 0 .25rem rgba(210,35,42,.5);
}
.holder{
	display:flex;
	justify-content:center;
	align-items:center;
	box-sizing:border-box;
	height:55px;
	padding:15px;
}
.btn-primary{
	width:90%;
	max-width:380px;
	min-width:155px;
	padding:.5rem 1rem;
	font-size:1rem;
	border-radius:.3rem;
	color:#fff;
	background-color:#d2232a;
	border-color:#d2232a;
}
.btn-primary:hover, .btn-primary:focus{
	color:#fff;
	background-color:#ad1d24;
	border-color:#ad1d24;
}
.btn-primary:active{
	color:#fff;
	background-color:#88171d;
	border-color:#88171d;
}
.btn-primary.disabled,.btn-primary:disabled{
	color:#fff;
	background-color:#88171d;
	border-color:#88171d;
}
.error{
	display:flex;
	justify-content:center;
	align-items:center;
	width:90%;
	max-width:380px;
	min-width:155px;
	height:50px;
    box-sizing:border-box;
    border-radius:5px;
	background-color:#e6646a;
	border:1px solid #d2232a;
    padding:10px;
	margin:0px auto 15px;
	text-align:center;
}
.info{
	display:flex;
	justify-content:center;
	align-items:center;
	width:90%;
	max-width:380px;
	min-width:155px;
	height:50px;
    box-sizing:border-box;
    border-radius:5px;
	background-color:#f5f5f5;
	border:1px solid #cacaca;
    padding:10px;
	margin:0px auto 15px;
	text-align:center;
}
.logout-confirmation{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background-color:#f8d1d3;
	border:1px solid #d2232a;
	box-sizing:border-box;
	padding:15px;
	text-align:center;
	font-weight:700;
	animation:logout-confirmation 0.5s 1;
    -webkit-animation:logout-confirmation 0.5s 1;
    animation-fill-mode:forwards;
    animation-delay:5s;
    -webkit-animation-delay:5s; /* Safari and Chrome */
    -webkit-animation-fill-mode:forwards;
}
@keyframes logout-confirmation{
	from{
		opacity:1;
	}
	to{
		opacity:0;
	}
}
@-webkit-keyframes logout-confirmation{
	from{
		opacity:1;
	}
	to{
		opacity:0;
	}
}

@media screen and (min-width:600px) {
	body{
		font-size:18px;
	}
	.brand-login{
		font-size:24px;
	}
	.error{
		height:65px;
	}
	.info{
		height:65px;
	}
}