#loginContainer {
	display: flex;
	padding-bottom: 120px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 850px;
	gap: 120px;
	background: var(--Deep-Sea-Gradient, linear-gradient(180deg, #00419E 0%, #001738 100%));
}
#loginDiv {
	display: flex;
	width: 700px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3px;
	width: 40%;
	height: 375px; 
	border-radius: 8px;
	background: var(--White, #FFF);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
}


	#loginDiv > :first-child {
		margin-top: auto;
		width: 242px; /* Fixed width */
		height: 44px; /* Fixed height */
		max-width: 100%; /* Ensure it doesn't exceed the container's width */
		max-height: 100%; /* Ensure it doesn't exceed the container's height */
	}

	#loginDiv > :last-child {
		margin-bottom: auto;
	}
#loginerrormsg {
	position: absolute;
	margin-top:50px;
}
/**Sign In Button*/
#signinbutton {
	display: flex;
	width: 346px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 20px;
	background: var(--Soft-Sky, #8ECAF3);
	border: none;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	color: var(--Dusk, #00419E);
	font-family: Arial;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	font-variant: all-small-caps;
}
	#signinbutton:hover, #microsoftSSO:hover {
	cursor:pointer;
	}

#signinBusy {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-top:3px;	
	vertical-align: -.125em;
	border: 5px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: .75s linear infinite spinner-border;
}

@keyframes spinner-border {
	to {
		transform: rotate(360deg);
	}
}

#microsoftSSO {
	color: white;
	font-size: 15px;
	font-family: "Segoe UI", "Helvetica";
	font-weight: 700;
	word-wrap: break-word;
	background: #2F2F2F;
	font-variant: normal;
	display: flex;
	width: 346px;
	height: 48px;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border-radius: 20px;
}
#forgetpw {
	display: flex;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

#forgotTxt > a, #accountTxt > a {
	color: var(--Twilight, #4776B9);
	/* Small text */
	font-family: "Segoe UI", "Helvetica";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.loginInfo {
	display: flex;
	width: 346px;
	padding: 10px;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 1px solid var(--Midnight, #191C1F);
}