

@font-face {
	font-family: 'Font Awesome';
	font-style: normal;
	font-weight: 900;
	src: url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url("fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 900;
	src: url("fonts/Roboto-Black.ttf") format("truetype");
}


body {
	color: #141010;
	background: #fff7f0;	
	-webkit-font-smoothing: antialiased;
}
h1,
p { 
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4em; 
	 
	text-align: left;
	letter-spacing: 0em;
	color: #fff7f0;
	padding: 0;
	margin: 0;
}
h1 {
	margin-bottom: 20px;
}
p { 
	font-size: 20px;
	font-weight: 400;
}
a {
  	color: #fff7f0;
	outline: none;
	text-transform: none;
	text-decoration: underline;	
}
a:hover {
	color: #000 !important;
	cursor: pointer;
}
.login label,
.login form .forgetmenot label {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 32px; 
	text-align: left;
	color: #f1f1f1;
}
.content p {
	padding-bottom: 16px;
}
.content {
	position: fixed;
    inset: 0; /* top:0; left:0; right:0; bottom:0 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#branding {
	width: 200px;
	text-align: center;
	box-sizing: border-box;
}
.logo {
    width: 100%;
    height: auto;
    transition: all 0.2s ease-out;	 
}
.logo img,
.logo svg {
    width: 100%;
    height: auto;
}



.login {
    position: fixed;
    top: 32px;
    right: 32px;
    background: #1f1f1f;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    opacity: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.login.active {
    opacity: 1;
}



.login form {
	border: none !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-ms-border-radius: 0 !important;
	border-radius: 0 !important;
	-ms-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	
	padding: 0 !important;
}
.login #login_error, 
.login .message {
	font-size: 10px !important;
	border-left: none !important;
	-ms-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	text-transform: uppercase;
}
.login input[type="text"],
.login input[type="password"],
.login form input[type=checkbox] {
	
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #dcdcdc !important;
	letter-spacing: 0.02em;
	border: 2px solid #000 !important;
	background: #000;
	width: 100%;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-ms-border-radius: 0 !important;
	border-radius: 0 !important;
	-ms-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
#user_login,
#user_pass {
	margin-bottom: 20px;
}
.login form input[type=checkbox] {
	width: 15px !important;
	height: 15px !important;
	background: #fff;
}
input[type="checkbox"]:checked {
	background: #000 !important;
}
input[type=checkbox]:checked:before {
	content: '' !important;
}



.login .button-primary  {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	text-indent: 0;
	letter-spacing: .04em;
	width: 100%;
	background-color: transparent;
	border: 2px solid #000;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 8px;
	display: block;
	line-height: 1.5em;
	padding: .5em 3em;
	box-sizing: border-box;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.login .button-primary:hover {
	border: 2px solid #1f1f1f;
	color: #f1f1f1;
	background-color: #37363e;
	cursor: pointer ;		
	padding: .5em 5em;

}

.main-navigation-btn {
	width: 40px;
	height: 40px;
	position: fixed;
	background: none;
	top: 20px;
	right: 20px;
	float: left;
	z-index: 1000001;
	cursor: pointer;
	text-align: center;
	line-height: 48px;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.main-navigation-btn .icon:before { 
	font: 900 normal 10px/1em 'Font Awesome';
	content: "\f192";	 
	vertical-align: 3px;
}
.main-navigation-btn .icon.active {
	display: none;
}
.main-navigation-btn:hover > .icon {
	color: #141010;
}

#overlay {
	background: 0 0 rgba(0, 0, 0, .9);
	height: 100%;
	display: none;
    position: fixed;
    top: 0; 
	left: 0;
    width: 100%;
	z-index: 99;
}




@media only screen and (max-width: 768px) {
    .content {
        padding: 16px;
    }
    #branding {
        width: 150px;
    }
    .login {
        top: 16px;
        right: 16px;
        width: calc(100% - 32px);
    }
}