/* Hide scrollbars on the entire page */
html, body {
	overflow: hidden;
}
html,
body,
canvas {
	width: 100%;
	height: 100%;
	background: #fff;
}

#loginTab, #loginTabContent {
	visibility: hidden;
}


canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1; /* Canvas should be beneath everything */
}

#app {
	position: relative;
	z-index: 2; /* Ensure #app is above the canvas, but below modal elements */
	width: 100%;
}

.modal-backdrop {
	z-index: 1050 !important; /* Ensure backdrop is above canvas and app */
	position: fixed !important;
}

.modal {
	z-index: 1060 !important; /* Modal should be above the backdrop */
	position: fixed !important;
}

.modal-dialog {
	z-index: 1060 !important; /* Ensure modal content stays above the backdrop */
	position: relative !important;
}

.page-header {
	margin: 8px 0px;
	font-size: 1rem;
}


#logonfooter {
	border: 1px solid #eaeaea;
	background-color: #fff;
	width: 250px;
	font-size: 0.85rem;
	letter-spacing: -0.01rem;
}

html,
body {
	display: flex;
}

.min-vh-75 {
	min-height: 75vh !important;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
	padding-right: calc(var(--bs-gutter-x) * 1);
	padding-left: calc(var(--bs-gutter-x) * 1);
}

.mt-8 {
	margin-top: 8rem;
}

.card, .card-header {
	border: 2px solid #eaeaea
}
.card-header {
	border: none;
}

label {
	font-size: 1rem;
}

#logon-text-main {
	color: #fff;
	font-size: 3rem;
	font-weight: 600;
	position: absolute;
	top: 140px;
	left: 20px;
	letter-spacing: -0.025rem;
}


#logon-text-secondary {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	position: absolute;
	top: 205px;
	left: 20px;
	letter-spacing: -0.025rem;
}

.arrow-right-white {
	background-image: url(/assets/img/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	height: 30px;
	position: relative;
	left: 240px;
	top: 165px;
}

/* Container to hold the logo */
.logo-container {
	position: relative;
	height: 130px;
}

@keyframes fadeInFromTop {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo-container img {
	animation: fadeInFromTop 200ms ease-out forwards;
}

@keyframes flyInFromLeft {
	0% {
		opacity: 0.0;
		transform: translateX(-100px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.arrow-right-white {
	animation: flyInFromLeft 600ms ease-out forwards;
}
.bg-green-custom {
	background-color: #009844;
}
.w-0 {
	width: 0 !important;
}
.h-0 {
	height: 0 !important;
}
