/*--------------------------------------------------------------
# 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: #399beb;
	text-decoration: underline;
}

	a:hover {
		color: #399beb;
	}
/*
.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 {
	display: flex;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding: 30px 0;
	align-items: center;
	background: black;
}

	.page-wrapper:before {
		content: "";
		position: absolute;
		width: 350px;
		height: 350px;
		background: linear-gradient(0deg, #2428ff, #399beb);
		top: -100px;
		right: -100px;
		border-radius: 50%;
		filter: blur(190px);
		z-index: 1;
		animation: moveLR 3s infinite alternate ease-in-out;
	}

	.page-wrapper:after {
		content: "";
		position: absolute;
		width: 350px;
		height: 350px;
		background: linear-gradient(0deg, #2428ff, #399beb);
		bottom: -100px;
		left: -100px;
		border-radius: 50%;
		filter: blur(190px);
		z-index: 1;
		animation: moveLR 2s infinite alternate ease-in-out;
	}

@keyframes moveLR {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(200px);
	}
}

.auth-layout {
	width: 50%;
	margin-left: auto;
}

.brand-logo {
	display: none;
}

.font-sm {
	font-size: 13px;
}

.form-section {
	position: relative;
	display: flex;
	z-index: 2;
	background: oklch(100% .00011 271.152 / .06);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid oklch(100% .00011 271.152 / .15);
	backdrop-filter: blur(8px);
	max-width: 500px;
	margin: auto;
}

	.form-section h3 {
		font-size: 22px;
		font-weight: 600;
		margin: 0 0 10px 0;
	}

		.form-section h3 + p {
			opacity: 0.6;
			font-size: 15px;
			line-height: normal;
			margin-bottom: 30px;
		}

	.form-section h2 {
		font-size: 26px;
		margin: 0 0 20px 0;
		font-weight: 600;
		text-align: center;
	}

		.form-section h2 + p {
			text-align: center;
			opacity: 0.6;
			font-size: 15px;
			line-height: normal;
			margin-bottom: 30px;
		}
/*.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: 100%;
}

.form-left p {
	font-size: 16px;
	font-weight: 500;
	margin: 0px;
}

.form-control {
	padding: 12px 15px !important;
	border-radius: 8px;
	border: 2px solid #8e8e923d;
	font-size: 16px;
	background: #070908;
	color: #fff;
	border: 1px solid oklch(100% .00011 271.152 / .15);
	background: oklch(100% .00011 271.152 / .06);
	backdrop-filter: blur(8px);
}

	.form-control::placeholder {
		color: #979797;
		font-size: 15px;
		font-weight: 600;
	}

.btn-primary,
.btn-primary:focus {
	color: #fff;
	background: linear-gradient( 90deg, #2428ff, #399beb);
	font-weight: 600;
	padding: 14px;
	font-size: 16px;
	border-radius: 10px;
	box-shadow: none;
	transition: all .3s ease;
}

	.btn-primary:hover, btn-secondary:hover {
		opacity: .9;
	}

.btn-secondary, .btn-secondary:focus {
	all: unset;
	color: #32a2ff !important;
	background: #3068f421 !important;
	outline: 1px solid #378feda8 !important;
	font-weight: 600;
	padding: 14px;
	font-size: 16px;
	border-radius: 10px;
	box-shadow: none;
	transition: all .3s ease;
	cursor: pointer;
}

.timercont {
	color: #05df72 !important;
}

.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: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: #399beb;
		border-color: #fff;
	}
	/* 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 {
	font-size: 14px;
	margin-top: 20px;
	text-align: center;
	line-height: 1.5;
}

	.signup_Text a {
		border-bottom: 1px solid;
		text-decoration: none;
		font-size: 13px;
		color: #399beb;
		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: 6px 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 {
	/*	backdrop-filter: blur(89px);
	position: absolute;
	inset: 0;
	z-index: 2;
	display: none;
	flex-direction: column;
	text-align: center;
	background: oklch(100% .00011 271.152 / .06);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid oklch(100% .00011 271.152 / .15);*/
}

.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: oklch(100% .00011 271.152 / .06);
	color: #fff;
	font-weight: 500;
}

	.otp-input:focus {
		border-color: #399beb;
		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 > span {
		opacity: .8
	}

	.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;
	}



	.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;
	}

	.page-wrapper > div:first-child {
		display: none;
	}

	.page-wrapper {
		min-height: 100vh !important;
		height: 100% !important;
		padding: 40px 15px;
	}

	.brand-logo {
		display: block;
		max-width: 150px;
		margin: auto;
		margin-bottom: 50px;
	}


	.auth-layout {
		width: 100%;
	}

	.brand-logo img {
		width: 100%;
		height: 100%;
	}

	.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;
	}



	.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: 15px;
	}

	.resend_otp {
		font-size: 13px;
	}

	.resend-text {
		font-size: 12px;
	}

	.signup_Text {
		position: inherit;
		bottom: inherit;
		left: inherit;
		font-size: 14px;
		margin-top: 15px;
		text-align: center;
	}

	.btn-primary, .btn-primary:focus {
		padding: 10px;
	}
}


@media screen and (max-width: 550px) {
	.form-section h2 {
		font-size: 20px;
		margin: 0 0 5px 0;
	}

		.form-section h2 + p {
			font-size: 13px;
			margin-bottom: 25px;
		}

	.form-group label {
		font-size: 13px;
		margin: 0 0 10px 0;
	}

	.form-control {
		padding: 10px 15px !important;
		font-size: 13px;
	}

		.form-control::placeholder {
			font-size: 13px;
		}

	.animated-checkbox-label {
		/*			flex-wrap: nowrap;*/
		font-size: 12px;
	}

		.animated-checkbox-label .checkmark {
			width: 14px;
			height: 14px;
		}

			.animated-checkbox-label .checkmark::after {
				left: 3px;
				top: 1px;
				width: 3px;
				height: 7px;
			}

	.pass_show_hide {
		height: 100%;
		font-size: 13px;
	}

	.font-sm {
		font-size: 12px;
	}
}

.auth-video {
	width: 700px;
	height: 700px;
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 0;
}
