@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

body, html{height:100%; width:100%;}
body{
	overflow: hidden;
}
*{
	font-family: 'Cabin', sans-serif;
}
/**/
.login_body{
	background-color: #35424e;
}
#loginBox{
	width: 600px;
	margin: 0px auto;
	padding-top: 200px;
}
.login_logo{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.login_logo img{
	height: 50px;
}
.login_form{
	background-color: #485662;
	padding: 34px 38px;
	border-radius: 8px;
}
.login_form .text{
	font-family: 'Cabin', sans-serif;
	font-size: 20px;
	color: #FFF;
	margin-bottom: 20px;
}
.login_form .text span{
	font-family: 'Cabin', sans-serif;
	font-weight: 700;
}
.login_form input{
	background-color: #2e3b47;
	color: #FFF;
	font-family: 'Cabin', sans-serif;
	border: 1px solid #2e3b47;
	outline: none;
	height: auto;
	padding: 11px 17px;
	margin-bottom: 20px;
}
.login_form input:focus{
	box-shadow: none;
	background-color: #2e3b47;
	color: #FFF;
}
#login_btn{
	background-color: #2983c3;
	border: none;
	font-family: 'Cabin', sans-serif;
	width: 150px;
	font-size: 16px;
	border-radius: 5px;
	transition: all linear 0.2s;
	-moz-transition: all linear 0.2s;
	-ms-transition: all linear 0.2s;
	-o-transition: all linear 0.2s;
	-webkit-transition: all linear 0.2s;
}
.login_info{
	font-family: 'Cabin', sans-serif;
	font-size: 15px;
	color: #B2BEBB;
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
}
.login_info a{
	color: inherit;
}
.login_form .alert{
	margin-bottom: 0;
	margin-top: 20px;
	transition: 0.2s all linear;
	-moz-transition: 0.2s all linear;
	-ms-transition: 0.2s all linear;
	-o-transition: 0.2s all linear;
	-webkit-transition: 0.2s all linear;
}
/**/
.mfa_title{
	color: #FFF;
	font-size: 20px;
	text-align: center;
	font-weight: 600;
}
.mfa_caption{
	color: #bfbfbf;
	text-align: center;
	margin-bottom: 25px;
}
.mfa_pin{
	font-size: 1.5rem;
	letter-spacing: 0.5rem;
	text-align: center;
}
.back_to_login{
	color: #eee;
	text-decoration: none;
}
.back_to_login:hover{
	color: #ddd;
}