@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
	/*font-family: 'Poppins', sans-serif;*/
	font-family: Red Hat Display;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--body-color: #E4E9F7;
	--text-color: #FFFFFF;
	--primary-color-light: #93C2FF;
	/* Transaction */
	--tran-02: all 0.2s ease;
	--tran-03: all 0.3s ease;
	--tran-04: all 0.4s ease;
	--tran-05: all 0.5s ease;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background-image: url('../../Images/Login_Reg_Image/Default_Theme/login_desktop_bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow-y: scroll;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.stack-logo-wrapper {
	/*border: 1px solid green;*/
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	/*margin-top: 25%;*/
	margin-top: 100px;
	height: 20%;
}

.stack-logo {
	width: auto;
	height: auto;
	/*margin-top: 70px;*/
	/*margin-right: 20px;*/
}

.stack-logo-signup {
	width: 300px;
	height: 60px;
	margin-top: 200px;
	margin-right: 20px;
}

.stack-logo img {
	width: 300px;
	height: 90px;
	/*border: 1px solid yellow;*/
}

.stack-logo-signup img {
	width: 300px;
	height: 90px;
}

.wrapper {
	/*margin-top: 80px;*/
	width: 511px;
	background: linear-gradient(135.57deg, rgba(181, 156, 156, 0.27), rgba(196, 196, 196, 0.05));
	color: #FFFFFF;
	padding: 40px;
	border-radius: 20px;
	border: 1px rgba(189, 187, 191, 1);
	margin-bottom: 40px;
	box-shadow: 1px rgba(189, 187, 191, 1);
}

	.wrapper h1 {
		font-family: Open Sans;
		font-size: 25px;
		font-weight: 400;
		line-height: 34.05px;
		letter-spacing: 0em;
		text-align: left;
		padding: 0px;
		/* margin-top: 16px;*/
		margin-bottom: 24px;
	}

	.wrapper .input-box {
		position: relative;
		width: 100%;
		/*height: 55px;*/
		height: auto;
		margin: 10px 0;
		text-align: left;
	}

		.wrapper .input-box .input-icon {
			position: absolute;
			left: 10px;
			top: 50%;
			transform: translateY(-50%);
		}


		.wrapper .input-box .eye-icon {
			position: absolute;
			right: 35px;
			top: 50%;
			transform: translateY(-50%);
			cursor: pointer;
		}

/*.wrapper .input-box .tooltip-icon{
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
*/
.separator {
	position: absolute;
	left: 38px;
	/* Adjust as needed */
	top: 50%;
	transform: translateY(-50%);
	color: #BDBBBF;
}

.wrapper .input-box input {
	/* width: calc(100% - 90px); */
	width: 100%;
	/* Adjusted for icon width and separator */
	/*height: 100%;*/
	height: 55px;
	padding-left: 50px;
	/* Added padding for icon and separator */
	border-radius: 5px;
	border: none;
}

.wrapper .input-box .input-text-box {
	/* width: calc(100% - 90px); */
	width: 100%;
	/* Adjusted for icon width and separator */
	/*height: 100%;*/
	height: 55px;
	padding-left: 50px;
	/* Added padding for icon and separator */
	border-radius: 5px;
	border: none;
}

.wrapper .remember-forgot {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 400;
	margin: 15px 0 25px;
}

.remember-forgot label input {
	accent-color: #FFFFFF;
	margin-right: 5px;
}

.remember-forgot a {
	color: #FFFFFF;
	text-decoration: none;
}

	.remember-forgot a:hover {
		text-decoration: underline;
	}

.result-text {
	text-align: left;
	color: #AA0707;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
	float: left;
}

.wrapper .btn-submit {
	width: 100%;
	background: #2A81F2;
	height: 55px;
	border-radius: 5px;
	color: var(--text-color);
	font-weight: 700;
	font-size: 18px;
	font-family: Red Hat Display;
	letter-spacing: 0.02em;
	border: none;
	outline: none;
	cursor: pointer;
	margin-bottom: 10px;
}

.wrapper .btn-azure-login {
	width: 100%;
	background: #2A81F2;
	background: linear-gradient(135.57deg, rgba(181, 156, 156, 0.27) 2.46%, rgba(196, 196, 196, 0.05) 99.05%);
	height: 55px;
	border-radius: 5px;
	color: var(--text-color);
	font-weight: 700;
	font-size: 18px;
	font-family: Red Hat Display;
	letter-spacing: 0.02em;
	border: none;
	outline: none;
	cursor: pointer;
	margin-bottom: 10px;
}

.register-link {
	font-family: Red Hat Display;
	font-size: 14px;
	font-weight: 500;
	line-height: 21.17px;
	vertical-align: bottom;
}

	.register-link p {
		color: var(--text-color);
		text-align: center;
		padding: 24px 28px 0px 28px;
	}


		.register-link p a {
			font-weight: 700;
			color: var(--primary-color-light);
			text-decoration: none;
		}

			.register-link p a:hover {
				text-decoration: underline;
				cursor: pointer;
			}

/* CSS for Tooltip Icon */
/*.tooltip-icon {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}*/

/*.tooltip-icon-position {
	position: absolute !important;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}*/

/*.tooltip {
	visibility: hidden;
	width: 145px;
	height: 77px;
	border: 1px;
	border-radius: 20px;
	background: linear-gradient(0deg, #E4E4E4, #E4E4E4), linear-gradient(0deg, #FFFFFF, #FFFFFF);
	color: #1F497B;
	line-height: 13px;
	font-size: 10px;
	padding: 10px;
	z-index: 1;
	top: -50px;*/ /* Adjust as needed */
/*left: 50%;
	transform: translateX(-50%);
}

.tooltip-icon-position:hover + .tooltip {
	visibility: visible;
}*/

.progress {
	height: 7px;
	border-radius: 10px;
	background-color: #E1E1E1;
}

.progress-bar {
	background-color: green;
	height: 7px;
	border-radius: 10px;
}

.one, .two {
	display: inline-block;
	float: left;
	position: relative;
	height: 100%;
	text-align: center;
	padding-top: 5px;
}

.errormessage {
	color: red;
}

.term-of-service {
	display: flex;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
	margin-top: 20px;
}

	.term-of-service img {
		height: 20px;
	}

	.term-of-service p {
		padding-left: 5px;
	}

	.term-of-service a {
		color: var(--primary-color-light);
	}

		.term-of-service a:hover {
			text-decoration: underline;
		}

.hightlight-color {
	font-size: 14px;
}

.resend-label {
	font-family: Red Hat Display;
	margin-top: 20px;
	margin-bottom: 42px;
	font-size: 16px;
}

.wrapper form .confirm-label {
	margin: 40px 0 50px 0;
}

.tooltip-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.tooltiptext {
	visibility: hidden;
	width: 200px;
	height: 70px;
	color: #1F497B;
	background: linear-gradient(0deg, #E4E4E4, #E4E4E4), linear-gradient(0deg, #FFFFFF, #FFFFFF);
	text-align: left;
	font-size: 14px;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 9999; /* Adjust as needed */
	/* top: 100%;*/
	bottom: 200%;
	/*left: 50%;*/
	margin-left: -108px; /* Adjust as needed */
}

	.tooltiptext::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		border-width: 5px;
		border-style: solid;
		/*background: #FFFFFF;*/
		border-color: #FFFFFF transparent transparent transparent;
		transform: translateX(-50%);
	}

.tooltip-icon:hover .tooltiptext {
	visibility: visible;
}


/* Media query for mobile view */
@media screen and (max-width: 700px) {
	.container .stack-logo {
		/*margin-top: -90px;
		margin-bottom: 50px;*/
	}

	.stack-logo-signup {
		margin-top: 13px;
		margin-bottom: 50px;
	}

	.wrapper {
		width: 90%;
		/* Adjust as needed */
		max-width: none;
	}
}

