﻿:root {
	--login-header-height: 1rem;
	--login-footer-height: 25px;
}

body {
	height: 100vh;
	height: -webkit-fill-available;
}

html {
	height: 100vh;
	height: -webkit-fill-available;
}

body form {
	font-size: 16px;
	height: 100%;
}

p {
	margin: 10px 0;
}

body * {
	box-sizing: border-box;
}

#pnlLoginDialogsContainer {
	width: 100vw;
	height: 100vh;
	height: 100%;
	overflow-y: auto;
	position: relative;
}

#loginDialogsWrapper {
	position: relative;
	display: inline-table;
	height: 100%;
	width: 100%;
}

#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;
}

#loginFooter {
	height: var(--login-footer-height);
	bottom: 0;
	font-size: 1rem;
	justify-content: flex-end;
	align-items: center;
}
#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: center;
	justify-content: center;
	position: relative;
	min-height: 100%;
	z-index: 1;
	box-sizing: border-box;
	padding: 10px;
}

#loginFormsWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	width: calc(100% - 20px);
	max-width: 350px;
}

#loginFormTabs {
	margin-bottom: -1px;
	padding-left: 10px;
}

	#loginWelcome, #loginTabContent, #loginFormTabs .login-form-tab {
		padding: 5px;
	}

	#loginTabContent, #loginFormTabs .login-form-tab {
		border: 1px solid #005591;
	}

	#loginFormTabs .login-form-tab {
		display: inline-block;
		background-color: #eee;
		border-bottom-color: #005591;
		font-weight: bold;
		color: #005591;
		text-transform: capitalize;
	}

		#loginFormTabs .login-form-tab:hover {
			background-color: #fff;
			cursor: pointer;
		}

		#loginFormTabs .login-form-tab.selected {
			border-bottom-color: #fff;
			background-color: #fff;
			pointer-events: none;
		}

#loginForms, #loginTabContent, #loginWelcome, #pnlLoginLanguage {
	width: 100%;
}

#loginTabContent {
	background-color: #fff;
}

.login-tab-content {
	display: none;
}

	.login-tab-content input {
		width: 100%;
		font-size: 1rem;
	}

#loginLogo {
	background-image: url('../images/furniture/IntroLogo.png');
	height: 72px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-position: center -155px;
	background-size: 288px;
}

.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;
}

#btnRegister {
	width: 100%;
}