/* ==========================================================
   OneDesk ERP – Splash Screen
   Clean • Professional • Enterprise-grade
   ========================================================== */

.onedesk-splash {
	height: 100vh; /* full screen */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	overflow: hidden;
}

	/* ----------------------------------------------------------
   Logo
   ---------------------------------------------------------- */
	.onedesk-splash img {
		width: 460px; /* match progress bar width */
		max-width: 90%; /* responsive */
		height: auto;
		margin-bottom: 36px;
		opacity: 0.98;
		animation: logo-fade-in 0.8s ease-out;
	}



/* ----------------------------------------------------------
   Loading Bar
   ---------------------------------------------------------- */
.onedesk-loading {
	width: 390px; /* same as logo */
	height: 15px; /* professional thickness */
	background: #e6e9ef;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}

	.onedesk-loading span {
		display: block;
		height: 100%;
		width: 0%; /* start empty */
		background: #fd7e14; /* primary brand color */
		border-radius: 999px;
		animation: fill-reset 4s ease-in-out infinite; /* slower */
	}

@keyframes fill-reset {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

/* ----------------------------------------------------------
   Loading Text
   ---------------------------------------------------------- */
.onedesk-loading-text {
	margin-top: 24px; /* spacing from loading bar */
	font-size: 1.6rem; /* slightly bigger */
	font-weight: 700; /* bold */
	color: #fd7e14; /* brand color */
	font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	text-align: center;
}
