* {
	box-sizing: border-box;
}
html, body{
	height: 100%;
	margin: 0;
	padding: 0;
}
body{
	display: flex;
	font-family: Arial; 
	font-size: 16px;
	font-style: normal;
	font-weight: 400; 
}
.login_holder{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.login_box{
	width: 520px;
	max-width: 100%;
	border-radius: 5px;
	background: #F8FAFE;
	box-shadow: 0px 0px 11px 0px #00000026;
	padding: 75px 100px 60px 100px;
	position: relative;
}
.login_holder img{
	margin: 30px auto 0 auto;
}
.login_box img{
	display: block;
	margin: 0 auto 40px auto;
	max-width: 320px;
}
.login_box .support{
	font-size: 13px;
	line-height: 14.95px;
	letter-spacing: 0.2px;
}
.login_box a.default{
	color: #F8981D;
}
.login_box a.bold{
	font-family: Arial;
	font-size: 14px;
	font-weight: 700;
	line-height: 16.1px;
	text-align: left;
	color: #344054;
	text-decoration: none;
}
.login_box a.bold:hover{
	text-decoration: underline;
}
.login_box #datetime{
	position: absolute;
	top: 25px;
	right: 20px;
	font-family: Arial;
	font-size: 14px;
	letter-spacing: 0.2px;
	color: #A5A5A5;
	user-select: none;
}
.login_box input[type='text'], .login_box input[type='password']{
	width: 100%;
	height: 44px;
	box-shadow: 0px 1px 2px 0px #1018280D;
	border: 1px solid #D0D5DD;
	border-radius: 8px;
	color: #667085;
	font-size: 16px;
	padding: 10px 14px;
	font-family: Arial;
	line-height: 24px;
	margin-bottom: 14px;
	outline: none;
}
.login_box input[type='text']:focus, .login_box input[type='password']:focus{
	border-color: #ff9836;
}
.login_box input[type='submit']{
	width: 100%;
	height: 40px;
	border: 1px solid #F8981D;
	border-radius: 8px;
	background: #F8981D;
	box-shadow: 0px 1px 2px 0px #1018280D;
	margin: 25px 0 15px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	cursor: pointer;
}
.login_box input[type='submit']:hover{
	background: #ff8a37;
}
.login_box input[type='submit']:after{
	content:'';
	width: 20px;
	height: 20px;
	background: transparent url('/mac7/templates/default/assets/svg/log-in.svg') no-repeat;
	background-position: center;
}
@media (max-width: 768px) {
	body {
		background: #F8FAFE;
	}
	.login_box {
		border-radius: 0px;
		box-shadow: none;
		background: none;
		padding: 0px 30px;
	}
	.login_box #datetime{
		display: none;
	}
}