/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
html,
body {
	height: 100%;
}

body {
	/* font-family: "Sora", sans-serif; */
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	line-height: 1;
	color: #f5f5f5;
	background-color: #0b0f0e;
}

.fa-regular, .far {
	font-weight: 600;
}

a {
	color: #19eff9;
	text-decoration: underline;
}

	a:hover {
		color: #19eff9;
	}

.elipse {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	z-index: 9;
}

	.elipse.banner-2 {
		top: 0%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		height: 60%;
		z-index: 0;
		/* animation: colorShift-2 7s ease-in-out infinite; */
		position: absolute;
		background-color: #0db9c1
	}

@keyframes colorShift-2 {
	0% {
		background-color: #0db9c1;
	}

	25% {
		background-color: #19eff9;
	}

	50% {
		background-color: #0db9c1;
	}

	75% {
		background-color: #19eff9;
	}

	100% {
		background-color: #0db9c1;
	}
}

body.loginreg > form {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}


.page-wrapper {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	width: 100%;
}

.form-section {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	padding: 50px;
	backdrop-filter: blur(30px);
	background-color: #0006;
	border: 2px solid #19eff924;
	width: 100%;
	max-width: 900px;
	display: flex;
	margin: 0 15px;
}

	.form-section h3 {
		font-size: 22px;
		font-weight: 600;
		margin: 0 0 10px 0;
	}

	.form-section h2 {
		font-size: 26px;
		margin: 0 0 30px 0;
		font-weight: 600;
	}

.elipse.service {
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 40%;
	background: radial-gradient(circle, rgb(177 250 253) 0%, rgb(177 250 253) 100%);
	animation: colorShift-3 10s ease-in-out infinite;
}

@keyframes colorShift-3 {
	0% {
		background: #19eff9;
	}

	25% {
		background: #0db9c1;
	}

	50% {
		background: #19eff9;
	}

	75% {
		background: #0db9c1;
	}

	100% {
		background: #19eff9;
	}
}

.form-left {
	width: 40%;
}

	.form-left img {
		width: 100%;
		max-width: 200px;
		margin-bottom: 80px;
	}

.form-right {
	width: 60%;
	padding-left: 60px;
	border-left: 1px solid #ffffff2e;
	position: relative;
	z-index: 11;
}

.form-left p {
	font-size: 16px;
	font-weight: 500;
	margin: 0px;
}

.form-control {
	padding: 12px 15px;
	border-radius: 8px;
	border: 2px solid #8e8e923d;
	font-size: 16px;
	background: #070908;
	color: #fff;
}

	.form-control::placeholder {
		color: #979797;
		font-size: 15px;
		font-weight: 600;
	}

.btn-primary,
.btn-primary:focus {
	color: #0b0f0e;
	background-color: #19eff9;
	border-color: #19eff9;
	font-weight: 600;
	padding: 14px;
	font-size: 16px;
	border-radius: 10px;
	box-shadow: none;
}

	.btn-primary:hover {
		background-color: #fff;
		border-color: #fff;
		color: #000
	}

.resend-text {
	font-size: 14px;
}

.form-group {
	position: relative;
	display: flex;
	flex-direction: column;
}

	.form-group label {
		font-size: 15px;
		margin: 0 0 12px 0;
		font-weight: 500;
	}

	.form-group input {
		padding-left: 40px;
	}

		.form-group input:focus {
			background: transparent;
			color: #fff;
			box-shadow: none;
			border-color: #8e8e923d;
		}

	.form-group svg.field_icon {
		position: absolute;
		bottom: 13px;
		left: 10px;
		fill: #979797;
		z-index: 1;
	}

	.form-group:focus-within svg.field_icon {
		fill: #19eff9;
	}

.password_label_field {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

	.password_label_field a {
		font-weight: 500;
		font-size: 15px;
		color: #19eff9;
	}

.pass_show_hide {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 40px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

	.pass_show_hide i {
		color: #979797;
	}

		.pass_show_hide i.fa-eye {
			display: none;
		}

.form-check {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	padding: 0px;
}

.animated-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	user-select: none;
	gap: 6px;
	flex-wrap: wrap;
}

	/* Hide default checkbox */
	.animated-checkbox-label input {
		opacity: 0;
		position: absolute;
	}

	/* Custom checkbox box */
	.animated-checkbox-label .checkmark {
		width: 18px;
		height: 18px;
		border: 2px solid #ccc;
		border-radius: 4px;
		position: relative;
		transition: all 0.3s ease;
	}

	/* Checked background */
	.animated-checkbox-label input:checked + .checkmark {
		background-color: #4f46e5;
		border-color: #4f46e5;
	}

	/* Checkmark tick */
	.animated-checkbox-label .checkmark::after {
		content: "";
		position: absolute;
		left: 4px;
		top: 0px;
		width: 6px;
		height: 12px;
		border: solid white;
		border-width: 0 2px 2px 0;
		transform: rotate(45deg) scale(0);
		transition: transform 0.3s ease;
	}

	/* Show tick when checked */
	.animated-checkbox-label input:checked + .checkmark::after {
		transform: rotate(45deg) scale(1);
	}


.signup_Text {
	position: absolute;
	bottom: 0;
	left: -310px;
	font-size: 14px;
}

	.signup_Text a {
		border-bottom: 1px solid;
		text-decoration: none;
		font-size: 13px;
		color: #19eff9;
		font-weight: 500;
	}

.input_wrap {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}


.wgl-canvas-outer {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.6;
}

#wgl-webgl-fluid {
	width: 100%;
	height: 100%;
}

.ErrorMessage {
	padding: 6px;
	border-radius: 5px;
	margin: 3px 0 0 0;
	font-size: 12px;
	width: 100%;
	color: #f44336e0;
	background-color: #f443361f;
	border: 1px solid #f4433654;
	font-weight: 600;
	/*display: none;*/
}

.form-group p.username {
	background: #19EFF91A;
	border: 1px solid #19eff940;
	padding: 6px;
	font-size: 13px;
	border-radius: 5px;
	color: #19eef8;
	margin: 5px 0 0 0;
}

.otp_screen {
	padding: 30px;
	border-radius: 10px;
	background: #000000eb;
	backdrop-filter: blur(89px);
	position: absolute;
	top: 0;
	right: 0px;
	left: 50px;
	bottom: -11px;
	z-index: 2;
	display: none;
	flex-direction: column;
}


.otp-container {
	display: flex;
	gap: 6px;
	margin: 30px 0 20px 0;
}

.otp-input {
	width: 100%;
	height: 54px;
	text-align: center;
	outline: none;
	border-radius: 8px;
	border: 2px solid #8e8e923d;
	font-size: 26px;
	background: #070908;
	color: #fff;
	font-weight: 500;
}

	.otp-input:focus {
		border-color: #19eff9;
		box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
	}

.resend_otp {
	font-size: 15px;
	color: #f5f5f5;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}

	.resend_otp a {
		font-weight: 500;
	}

#step2 {
	display: none;
}

#continue_step i {
	font-weight: 600;
	margin: 0 0 0 5px;
}

.reg_back_link {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

	.reg_back_link i {
		font-weight: 600;
		margin: 0 5px 0 0;
	}

	.reg_back_link a {
		text-decoration: none;
		border-bottom: 1px solid;
		padding: 0 0 2px 0;
	}

#reset_password {
	display: none;
}

	#reset_password .otp_screen {
		display: block;
		position: inherit;
		background: none;
		padding: 0px;
		backdrop-filter: none;
	}

	#reset_password .otp-container {
		margin: 10px 0 15px 0;
	}

div#loader {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 11;
	background: #000000e0;
	display: none;
}

	div#loader img.img-loader {
		width: 100%;
		max-width: 100px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

@media screen and (min-width: 768px) and (max-width: 1024.9px) {
	.form-section {
		padding: 30px;
		max-width: 740px;
	}

	.form-left img {
		max-width: 180px;
	}

	.form-right {
		padding-left: 40px;
	}

	.otp_screen {
		padding: 25px;
		left: 30px;
	}

	.signup_Text {
		left: -270px;
	}
}


@media screen and (max-width: 767.9px) {
	.form-section {
		flex-direction: column;
		padding: 20px 15px;
	}

	.form-left {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

		.form-left img {
			max-width: 150px;
			margin-bottom: 30px;
		}

	.form-section h3 {
		font-size: 18px;
		margin: 0 0 6px 0;
	}

	.form-left p {
		font-size: 15px;
	}

	.form-right {
		width: 100%;
		padding-left: 0px;
		border-left: none;
	}

	.form-section h2 {
		display: none;
	}

	.otp_screen {
		left: 0px;
		bottom: -10px;
		padding: 5px;
	}

		.otp_screen p {
			font-size: 14px;
			line-height: 18px
		}

	.otp-container {
		margin: 0px 0 10px 0;
	}

	.otp-input {
		height: 40px;
		font-size: 20px;
	}

	.signup_Text {
		position: inherit;
		bottom: inherit;
		left: inherit;
		font-size: 14px;
		margin-top: 15px;
		text-align: center;
	}

	.btn-primary, .btn-primary:focus {
		padding: 10px;
	}
}
