body {
	overflow-y: scroll; /* Show vertical scrollbar */
	margin: 0;
}

a {
	text-decoration: none;
	color: #333;
	font-size: 1em;
}

/* ------------------------------------------ login form ----------------------------------------- */
.loginError,
.loginOK {
	width: 100%;
	display: block;
	color: #ff0000;
}
.loginOK {
	color: #0b530f;
}

.cancel {
	display: block;
	width: 100%;
	text-align: right;
}

#indexdeskCont {
	height: 100vh;
	display: flex;
	justify-content: center;
	position: relative;
}

#indexdeskCont > div {
	width: 200px;
	height: 200px;
	position: absolute;
	top: 50%;
	margin-top: -100px; /* half this element's height */
	text-align: center;
}

#loginCont {
	height: 100vh;
	display: flex;
	justify-content: center;
	position: relative;
	background-color: #dfdcdc;
}

#loginBox {
	width: 760px;
	height: 504px;
	position: absolute;
	top: 50%;
	margin-top: -272px;
	padding: 20px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background-color: #fff;
}

#loginBox > div {
	width: 49%;
}

#loginBox #advert {
	background-image: url(/doortablet/doorswebui.nsf/img/booker-login.png);
	background-repeat: no-repeat;
	background-position: top;
}

#loginBox #advertDT {
	background-image: url(/doortablet/doorswebui.nsf/img/DT-login.png);
	background-repeat: no-repeat;
	background-position: top;
}

#loginTable {
	width: 100%;
}

#loginHeaderIcon {
	height: 80px;
	width: 100%;
	background-image: url(/doortablet/doorswebui.nsf/img/multi-doors.png);
	background-size: calc(100% - 120px);
	background-repeat: no-repeat;
	background-position: top;
}

#login {
	font-family: 'Raleway';
	font-weight: normal;
}

#login input,
#login select {
	border: 1px solid rgb(182, 182, 182);
	border-radius: 4px;
	width: calc(100% - 14px);
	height: 34px;
	margin-bottom: 1rem;
	padding-left: 10px;
}
#login select {
	width: 100%;
	height: 38px;
}

.btn {
	display: block;
	height: 45px;
	background: #4e9caf;
	padding: 4px;
	text-align: center;
	border-radius: 5px;
	color: white;
	line-height: 48px;
	margin-bottom: 20px;
	text-decoration: none;
	font-weight: bold;
}

/* ----------------------------------------- end login form --------------------------------------- */
