/** CSS for the maintenance page. */
/* @version 26 November 2025. */
html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1;
	font-kerning: normal;
	background: linear-gradient(302.91deg, rgba(247, 236, 238, 0.94) 26.03%,
		#DDFDFF 52.12%, #ECFDFE 82.21%);
	background-attachment: fixed;
}

* {
	box-sizing: border-box;
}

.offline-container {
	font-size: 0;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	width: 100%;
	position: relative;
	gap: 48px;
}

.offline-left {
	position: relative;
	z-index: 1;
	max-width: 454px;
	display: flex;
	flex-direction: column;
}

.offline-right {
	max-width: 650px;
	width: 100%;
}

.grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/bg_grid.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom -120px;
}

.bg {
	background-image: url("../images/bg.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	height: 100%;
	position: relative;
	min-height: 600px;
}

.logo {
	display: inline-block;
	height: 60px;
}

.logo .ida-sub-header-logo-container {
	background: #FFF;
}

.title {
	font-size: 56px;
	line-height: 64px;
	margin-top: 20px;
	color: #333;
	font-weight: 600;
	margin-bottom: 16px;
}

.sub-title {
	font-size: 32px;
	line-height: 44px;
	color: #333;
	font-weight: 600;
}

@media screen and (max-width: 1124px) {
	.offline-container {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.bg {
		background-position: center center;
	}
}