
html {
	height: 100%;
	background: url('../images/index-bg.jpg') center center no-repeat;
	background-size: cover;
}
#mainContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
#page-home #content {
	display: flex;
	width: 56em;
	min-height: auto;;


	margin-left: 0; /* TEMP */
}
#page-home.myMerch #content {
	width: 28em;
}
#page-home #content .footer {
	text-align: center;
	/* margin: 2em 0; */
}
#page-home #content .footer .btn {
	padding: 1.1em 4em;
	min-width: 15em;
}
#page-home #content .footer .btnOutline {
	border: 1px solid rgba(255,255,255,.9);;
	color: rgba(255,255,255,.9);
	background: transparent;
}
#page-home #content .footer .btnOutline:hover {
	background: rgba(60,147,181,.8);
	border-color: white;
	color: white;	
}
#page-home #content .footer .btn-main {
	background-color: var(--color-primary-700);
}
#page-home #content .footer .btn-main:hover {
	background-color: var(--color-primary-800);
}
#page-home h1 {
	font-size: 2.75em;
	margin-top: 0;
	padding: 0;
	color: white;
}
#page-home .description,
#page-home .login {
	flex: 1;
	padding: 2.5em;
}
#page-home .description,
#page-home .login form {
	display: grid;
	grid-template-rows: 9em 13em 5em;
}
.myMerch .login .header {
	align-self: center;
}
#page-home .description {
	background: rgba(60,147,181,.9);
	color: white;
}
#page-home li {
	font-size: 1.3em;
	font-weight: 500;
	padding-bottom: 0.7em;
}
#page-home li::before {
	content: '\f0da';
	font-family: var(--font-icons);
	font-weight: 900;
	padding-right: 1em;
}
#page-home .login {
	background: white;
}
#page-home .login .header {
	text-align: center;
}
#page-home .login .header img {
	max-height: 90%;
}
#page-home .login label i {
	padding-right: 1em;
	font-size: 1.3em;
}
#page-home .login .form field {
	margin-top: 0;
}
#page-home .login .form field input {
	/* padding-bottom: 0.7em; */
	border-radius: none;
}
#page-home .login .copyright {
	font-size: .73em;
	text-align: center;
	color: rgba(0,0,0,var(--opacity-text-disabled));
	margin-top: 3.5em;
}

/* LG */
@media (max-width: 1199px) {
	
	#page-home #content {
		width: 50em;
		align-content: center;
	}
	#page-home .description,
	#page-home .login form  {
		grid-template-rows: 8em 11em 5em;
	}
	#page-home h1 {
		font-size: 2.2em;
	}
	#page-home li {
		font-size: 1.2em;
	}
}	
/* MD */
@media (max-width: 991px) {
	#page-home #content {
		width: 45em;
	}
	#page-home .description,
	#page-home .login form  {
		grid-template-rows: 8em 9em 5em;
	}
	#page-home h1 {
		font-size: 1.8em;
	}
	#page-home li {
		font-size: 1.1em;
	}
}
/* SM */
@media (max-width: 767px) {
	#page-home #content {
		width: 80% !important;
	}
	#page-home .description {
		display: none;
	}
	#page-home .login form  {
		grid-template-rows: 8em 9em 5em;
	}
	
}
/* XS */
@media (max-width: 575px) {
	#page-home #content {
		/* width: min(30em,95em); */
		width: 100vw !important;
		min-height: 100vh;
	}
	#page-home .login {
		padding: 20px;
		
	}
}