﻿:root {
	--login-header-height: 6rem;
	--login-footer-height: 25px;
}

body {
	height: -webkit-fill-available;
}

body * {
	box-sizing: border-box;
}

body form {
	font-size: 16px;
	height: 100%;
}

html {
	height: -webkit-fill-available;
}

p {
	margin: 10px 0;
}

#pnlLoginDialogsContainer {
	width: 100vw;
	height: 100vh;
	height: 100%;
	overflow-y: auto;
	position: relative;
    background: url(../images/sats-high-lift-truck.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#loginDialogsWrapper {
	position: relative;
	display: inline-table;
	height: 100%;
	width: 100%;
    background: #00000080;
}

#logindialogouter {
	opacity: 0.5;
}

#loginHeader, #loginFooter {
	height: var(--login-header-height);
	position: absolute;
	left: 0;
	width: 100%;
	/*z-index: 99;*/
	display: flex;
}

#loginHeader {
	position: sticky;
	margin-bottom: calc(var(--login-header-height) * -1);
	top: 0;
    background: url(../images/furniture/sats-logo-white.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
}

#loginHeader::before {
    content: '';
    width: 70px;
    position: absolute;
    height: 100%;
    background-image: url(../images/furniture/dayonelogo-white.png);
    left: 205px;
    z-index: 1000;
    background-size: auto 70px;
    background-position: center;
    background-repeat: no-repeat;
}

#loginFooter {
	height: var(--login-footer-height);
	bottom: 0;
	font-size: 1rem;
	justify-content: flex-end;
	align-items: center;
	display: none;
}
#loginFooter a {
	margin: 0 5px;
	text-decoration: none;
}

#loginPanelColumnContainer {
	height: 100%;
	padding-top: var(--login-header-height);
	padding-bottom: var(--login-footer-height);
	display: flex;
	justify-content: center;
}

.login-panel-column {
	height: 100%;
}

.login-panel-column {
	width: 100%;
}

	.login-panel-column.left, .login-panel-column.right {
		width: 0;
	}

#loginContentWrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	min-height: 100%;
	z-index: 1;
	box-sizing: border-box;
	padding: 0 5.5rem;
}

#loginFormsWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	width: calc(100% - 20px);
	max-width: 600px;
    padding: 2rem;
    border-radius: 3px;
    background-color: #fff;
}

#loginFormTabs {
	margin-bottom: -1px;
	padding-left: 10px;
}

#loginWelcome {
    margin-bottom: 1rem;
}

#loginWelcome h2 {
    margin: 0;
    font-size: 1.5rem;
}

	#loginWelcome, #loginTabContent, #loginFormTabs .login-form-tab {
		padding: 5px;
	}

	#loginTabContent, #loginFormTabs .login-form-tab {
		/*border: 1px solid #D2E1EB;*/
	}

	#loginFormTabs .login-form-tab {
		display: inline-block;
		/*background-color: #eee;*/
		/*border-bottom-color: #D2E1EB;*/
		font-weight: bold;
		/*color: #005591;*/
		text-transform: capitalize;
        padding: .2rem 0;
        text-transform: uppercase;
	}

		#loginFormTabs .login-form-tab:hover {
			background-color: #fff;
			cursor: pointer;
            border-bottom: 2px solid #ee253780;
		}

		#loginFormTabs .login-form-tab.selected {
			/*border-bottom-color: #D2E1EB;*/
			/*background-color: #D2E1EB;*/
			pointer-events: none;
            border-bottom: 2px solid #ee2537 ;
		}

#loginForms, #loginTabContent, #loginWelcome, #pnlLoginLanguage {
	width: 100%;
}
#loginForms input[type=checkbox] {
    display: inline-block;
    width: auto;
}

#loginTabContent {
	/*background-color: #D2E1EB;*/
}

.login-tab-content {
	display: none;
}

	.login-tab-content input {
		width: 100%;
		font-size: 1rem;
	}

#loginLogo {
	/*background-image: url('../images/furniture/IntroLogo.png');*/
	background-image: url('../images/brandimages/boc-logo.svg');
	height: 82px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-position: center;
	background-size: 100%;
	margin-bottom: 40px;
    display: none;
}

.formline {
	margin-bottom: 10px;
}

.formlabel {
	/*font-weight: bold;*/
	padding: 10px 0px;
	/*color: #005591;*/
}

#pnlLoginLanguage {
	display: none;
}

	#pnlLoginLanguage .formline {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	#pnlLoginLanguage .formlabel {
		margin-right: 10px;
	}

#lnkForgottonPassword {
	margin-top: 10px;
	text-align: right;
}

#lnkForgottonPassword a {
	cursor: pointer;
}

#btnLogin, #btnRegister {
	width: auto;
    background: #ee2537;
    border-radius: 0;
    padding: 0 1rem;
    text-transform: uppercase;
}

#pnlRegistrationCodeLogin {
	display: none;
}