* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	scroll-behavior: smooth;
	line-height: 1.5;
}

:root {

	--color-bg: #020916;
	--color-pannel: #0b1126;
	--color-hg: #52fea0;
	--color-sec-hg: #faff2a;
	--color-bl-hg: #8e74f1;

	--color-gradient: linear-gradient(to right, #3300FF, #FF0066);
}

::-webkit-scrollbar {
	width: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

a {
	text-decoration: none;
	color: #fff;
}
html {
	scroll-behavior: smooth;
}
body {
	background-color: var(--color-bg);
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	overflow-x: hidden;
	width: 100vw;
	color: #fff;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

nav {
	z-index: 1000;
	width: 100vw;
	overflow: hidden;
}
.top_nav {
	position: fixed;
	top: -1px;
	width: 100vw;
	z-index: 1000;
	background: rgba(2, 9, 22, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	text-align: center;
	padding: 0.3rem 0;
}
.top_nav span {
  	font-family: "Cinzel", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.75rem;
	width: 100%;
}

.bot_nav {
	position: fixed;
	bottom: 1.5rem;
	width: 95vw;
	height: fit-content;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1000;
}

.bot_nav .conatiner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	padding: 0.5rem;
	border-radius: 5rem;

	background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.bot_nav .nav_btns {
	display: grid;
	padding-bottom: 0.4rem;
}

.bot_nav .nav_btns i {
	font-size: 1.5rem;
	margin: auto;
	color: #fff;
	opacity: 0.75;
	margin-top: -0.1rem;
}

.bot_nav .nav_btns span {
	font-size: 0.7rem;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.05rem;
	margin-top: -0.25rem;
}

.bot_nav .nav_btns.active {
	background: #0b1126aa;
	border-radius: 5rem;
	opacity: 1;
}

.bot_nav .nav_btns.active i {
	color: #fff;
}

.bot_nav .nav_btns.active span {
	font-weight: 700;
}

/*------------------HOME PAGE--------------------*/


.top_banner {
	width: 100vw;
	position: relative;
}


.top_banner .b_img {
	position: relative;
	width: 100%;
}

.top_banner .b_img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(2, 9, 22, 0.45) 0%,
			/* #F8FAFC with 0.5 opacity on top */
			rgba(2, 9, 22, 0.8) 75%,
			/* Fully transparent middle */
			#020916 100%
		);
	pointer-events: none;
}
.top_banner .b_img img {
	width: 100%;
	max-height: 530px;
}


.top_banner .content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	padding: 0 1rem;
	padding-top: 0.5rem;
}
.top_banner .content .logo img {
	opacity: 1;
	width: 100%;
}
.top_banner .content .tag {
	color: var(--color-bl-hg);
	margin: 1.5rem auto;
	margin-top: 0.75rem;
	width: fit-content;
	letter-spacing: 2px;
	font-size: 1.3rem;
	font-weight: 600;

	background: var(--color-gradient);
	background-clip: text;
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count_down {
	width: 100%;
	margin: auto;
}
.count_down .pannel {
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 1rem 0;
	border-radius: 0.8rem;
}
.count_down .segmt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.count_down .linner {
	margin: 0 1.25rem;
	width: 2px;
	height: 1.5rem;
	background: #fff;
	align-self: center;
	opacity: 0.25;
}
.count_down .num {
	font-size: 1.75rem;
	letter-spacing: 0.25rem;
	font-weight: 700;
}
.count_down span {
	font-size: 0.8rem;
	opacity: 0.6;
	letter-spacing: 0.05rem;
}

@media (max-width: 389px) {
    .top_banner .b_img img {
		max-height: 495px;
	}
	.top_banner .content {
		padding: 0 0.75rem;
	}
	.top_banner .content .main {
		font-size: 1.9rem;
	}
	.count_down .linner {
		margin: 0 1rem;
	}
	.count_down .num {
		font-size: 1.5rem;
		letter-spacing: 0.25rem;
		font-weight: 700;
	}

}

.price_register {
	width: 95vw;
	margin: 2.5rem auto;
	text-align: center;
	background: var(--color-pannel);
	border-radius: 1rem;
	padding: 1.5rem 0;
}
.price_register .price_bar {
	font-size: 0.9rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.65);
}
.price_register .price_bar span {
	font-size: 1.5rem;
	background: var(--color-gradient);
	background-clip: text;
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: 600;
}
.price_register .title {
	margin: 1rem 0;
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
	font-weight: 700;
	line-height: 1.2;
}
.price_register .date {
	opacity: 0.75;
	letter-spacing: 0.05rem;
	font-size: 1.1rem;
}
.price_register .location {
	width: fit-content;
	margin: 0.75rem auto;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.2rem 1rem;
	border-radius: 0.3rem;
	letter-spacing: 0.05rem;
}
.price_register .reg_btn {
	background: var(--color-hg);
	color: var(--color-bg);
	width: 80%;
	margin: 1.5rem auto;
	margin-bottom: 0.75rem;
	padding: 0.75rem 0;
	border-radius: 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 1px;
}
.price_register .closes_in {
	color: var(--color-sec-hg);
	letter-spacing: 0.05rem;
}


.abt_hmpg {
	width: 92.5vw;
	margin: auto;
}
.abt_hmpg .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
.abt_hmpg .brief {
	text-align: justify;
	opacity: 0.85;
	font-size: 0.95rem;
}
.abt_hmpg .brief span {
	font-size: 1rem;
	opacity: 1;
	font-weight: 700;
}
.abt_hmpg .more_btn {
	width: fit-content;
	margin: 1.5rem auto;
	color: var(--color-hg);
	background: transparent;
	border: 1px solid var(--color-hg);
	border-radius: 0.25rem;
	padding: 0.2rem 1rem;
}

.participate {
	width: 95%;
	margin: 2rem auto;
}
.participate .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.participate .timeline {
	display: grid;
}
.participate .liner {
	width: 5px;
	height: 3.5rem;
	background: var(--color-hg);
	margin: auto;
}
.participate .step {
	background: var(--color-pannel);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem;
	padding-top: 3.25rem;
	position: relative;
	margin-top: 2.5rem;
	border-radius: 1rem;
	box-shadow: 0 8px 1.5rem rgba(0, 0, 0, 0.15);

}
.participate .step .icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 3rem;
	width: 5.5rem;
	height: 5.5rem;
	background: var(--color-pannel);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 0.5rem solid var(--color-bg);
	color: var(--color-dark);
}
.participate .step .icon i {
	opacity: 0.85;
}
.participate .step h3 {
	text-align: center;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 1px;
}
.participate .step p {
	text-align: justify;
	line-height: 1.4;
	font-size: 0.9rem;
	font-weight: 500;
	opacity: 0.85;
}

.partners {
	width: 95vw;
	margin: 1.5rem auto;
}
.partners .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.partners .brief {
	margin-bottom: 1rem;
	text-align: justify;
	opacity: 0.85;
}
.partners .container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 98%;
	margin: auto;
}
.partners .container .partners_logo {
	background: rgba(255, 255, 255);
	padding: 1rem;
	border-radius: 1rem;
}
.organizer.partners .brief {
	margin: 1rem 0;
	opacity: 0.85;
}
.organizer.partners .brief span {
	font-weight: 700;
	opacity: 1;
}
.organizer.partners .container .partners_logo {
	background: rgba(49, 60, 28, 0.75);
}


.contact_us {
	width: 95vw;
	margin: 2.5rem auto;
}
.contact_us .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.contact_us .brief {
	margin-bottom: 1rem;
	text-align: justify;
	opacity: 0.85;
}
.contact_us .container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact_us .container a {
	background: var(--color-pannel);
	display: flex;
	flex-direction: row;
	align-items: center;
	border-radius: 0.75rem;
	padding: 0.75rem;
}
.contact_us a .top {
	font-weight: 600;
	letter-spacing: 0.05rem;
	opacity: 0.75;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}
.contact_us a .btm {
	letter-spacing: 0.05rem;
	margin-left: 0.25rem;
}
.contact_us a .icon {
	margin-left: auto;
	font-size: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border: 2px solid var(--color-hg);
	color: var(--color-hg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.faq {
	width: 95vw;
	margin: 1.5rem auto;
}
.faq .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
	text-align: center;
}
.faq .container {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.faq article {
	background: rgba(11, 17, 38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	letter-spacing: 0.05rem;
	overflow: hidden;
	border-radius: 0.75rem;
}
.faq article .question {
	font-size: 1rem;
	margin: 0 0.5rem;
	display: flex;
	flex-direction: row;
	font-size: 0.9rem;
	align-items: center;
}
.faq article .question span {
	margin: 1rem 0.25rem;
	margin-right: 0.75rem;
	font-weight: 600;
}
.faq article .question i {
	margin-left: auto;
	font-size: 1.5rem;
	transition: transform 0.5s ease;
}
.faq article.active .question i {
	transform: rotate(225deg);
}
.faq article .ans {
	font-size: 0.8rem;
	opacity: 0.75;
	text-align: justify;
	max-height: 0;
	transition: max-height 0.3s ease;
}
.faq article.active .ans {
	max-height: 50vh;
}
.faq article .ans .contr {
	margin: 0 1rem;
	margin-bottom: 1rem;
}


footer {
	width: 100vw;
	background: #000815;
	padding: 2.5rem 0;
	padding-bottom: 8rem;
	color: #fff;
}
footer .comp_brief {
	display: flex;
	flex-direction: column;
	width: 90vw;
	margin: auto;
}
footer .comp_brief .comp_logo {
	width: 80%;
	margin: auto;
}
footer .comp_logo img {
	width: 100%;
	opacity: 0.8;
}
footer .comp_brief .brief {
	margin-top: 1rem;
	text-align: justify;
	font-size: 0.95rem;
	letter-spacing: 1px;
	font-weight: 300;
}

footer .join_Us {
	width: 90vw;
	margin: auto;
}
footer .join_Us .title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
footer .join_Us .sub_brief {
	margin-top: 1rem;
	text-align: justify;
	font-size: 0.95rem;
	letter-spacing: 1px;
	font-weight: 300;
}
footer .join_Us .join_btn {
	background: var(--color-hg);
	color: var(--color-bg);
	width: 80%;
	margin: 1.5rem auto;
	margin-bottom: 0.75rem;
	padding: 0.75rem 0;
	border-radius: 0.5rem;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
}

footer .socials {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	margin-top: 1.75rem;
}
footer .socials a {
	margin: auto;
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	color: #fff;
}
footer .quick_l {
	margin: 1.5rem auto;
	text-align: center;
}
footer .quick_l .title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
footer .quick_l .links {
	display: grid;
	gap: 1rem;
	font-size: 1.1rem;
	letter-spacing: 1px;
}
footer .quick_l .links a {
	color: #fff;
}
footer .rights {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

footer .designed_by {
	text-align: center;
	margin: auto;
	margin-top: 1rem;
	width: fit-content;
	padding: 0.75rem 1rem;
	padding-bottom: 0;
	border-top: 1px solid #fff;
}
footer .designed_by .top {
    font-family: "Lobster", sans-serif;
    font-style: normal;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0.3rem;
}
footer .designed_by .comp_url {
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}

.upcoming_event {
	width: 95vw;
	margin: 1.5rem auto;
}
.upcoming_event .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
	text-align: center;
}
.upcoming_event article {
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
	position: relative;
	background-image: url('assets/crowd_at_event.jpg');
	border-radius: 1rem;
	overflow: hidden;
}
.upcoming_event article .blurer {
	position: absolute;
	background: linear-gradient(to right, rgba(33, 0, 166, 0.65), rgba(168, 0, 67, 0.65));
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.upcoming_event article .cont {
	z-index: 10;
	position: relative;
	padding: 0.5rem;
	letter-spacing: 0.05rem;
	font-size: 0.95rem;
	font-weight: 600;
}
.upcoming_event article .date {
	font-weight: 900;
	font-size: 1.1rem;
	letter-spacing: 2px;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: fit-content;
	padding: 0.2rem 1rem;
	background: rgba(210, 210, 210, 0.4);
	border-radius: 0.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.75rem;
}
.upcoming_event article .topic {
	font-weight: 800;
	font-size: 1rem;
}
.upcoming_event article .type {
	display: flex;
	flex-direction: row;
	margin-top: 0.25rem;
}
.upcoming_event article .type span {
	opacity: 0.75;
}
.upcoming_event article .type label {
	font-weight: 800;
	letter-spacing: 1px;
}
.upcoming_event article .type .duration {
	margin-left: auto;
}

.event_schedule {
	width: 95vw;
	margin: 1.5rem auto;
}
.event_schedule .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
	text-align: center;
}
.event_schedule .brief {
	text-align: justify;
	opacity: 0.85;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}
.event_schedule .container {
	display: grid;
}
.event_schedule .container .done {
	opacity: 0.3;
}
.event_schedule .track {
	width: 3px;
	height: 4rem;
	background: var(--color-hg);
	margin: auto;
}
.event_schedule article {
	padding: 0.75rem;
	background: var(--color-pannel);
	border-radius: 1rem;
	border: 2px solid var(--color-hg);
	position: relative;
	overflow: hidden;
}
.event_schedule article .tag {
	display: none;
	position: absolute;
	background: orangered;
	width: 10rem;
	text-align: center;
	font-weight: 900;
	padding: 0.15rem 0;
	letter-spacing: 1px;
	top: 1rem;
	right: -3.3rem;
	transform: rotate(45deg);
} 
.event_schedule article.done .tag {
	display: block;
} 
.event_schedule article .date {
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: 2px;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: fit-content;
	margin: auto;
	padding: 0.2rem 1rem;
	background: rgba(210, 210, 210, 0.4);
	border-radius: 0.5rem;
	margin-top: 0.5rem;
	margin-bottom: 0.75rem;
	color: var(--color-sec-hg);
}
.event_schedule article .topic {
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 1px;
}
.event_schedule article .type {
	display: flex;
	flex-direction: row;
	margin-top: 0.5rem;
}
.event_schedule article .type span {
	opacity: 0.75;
}
.event_schedule article .type label {
	font-weight: 800;
	letter-spacing: 1px;
}
.event_schedule article .type .duration {
	margin-left: auto;
}

.about_sa {
	width: 95vw;
	margin: 1.5rem auto;
}
.about_sa .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.about_sa .brief {
	text-align: justify;
	opacity: 0.85;
	font-size: 0.95rem;
}
.about_sa .brief span {
	font-size: 1rem;
	opacity: 1;
	font-weight: 700;
}

.vision {
	width: 95vw;
	margin: 1.5rem auto;
}
.vision .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.vision .brief {
	text-align: justify;
	opacity: 0.85;
	font-size: 0.95rem;
}


.weoffer {
	width: 95vw;
	margin: 1.5rem auto;
}
.weoffer .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.weoffer .brief {
	opacity: 0.85;
	font-size: 0.95rem;
}
.weoffer .brief .pts {
	margin-bottom: 1rem;
}

.whypart {
	width: 95vw;
	margin: 1.5rem auto;
}
.whypart .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.whypart .brief {
	opacity: 0.85;
	font-size: 0.95rem;
}
.whypart .brief .sub_brief {
	margin-bottom: 0.75rem;
	text-align: justify;
}
.whypart .brief .pts {
	margin-bottom: 1rem;
	padding-left: 0.5rem;
}



.login_pg {
	width: 100vw;
	overflow-x: hidden;
}
.login_pg .top_cont {
	height: 17.5rem;
	display: flex;
	flex-direction: column;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-image: url('assets/login_banner.jpg');
	overflow: hidden;
	z-index: -1;
	padding-bottom: 2rem;
}
.login_pg .top_cont .blurer {
	position: absolute;
	background: rgba(2, 9, 22, 0.5);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.login_pg .top_cont .head_cont {
	margin: 0 auto;
	margin-top: auto;
	width: 95vw;
	z-index: 10;
}
.login_pg .top_cont .head {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
.login_pg .top_cont .sub_head {
	font-size: 0.8rem;
	opacity: 0.95;
	margin-bottom: 0.75rem;
	letter-spacing: 0.05rem;
}

.login_pg .pannel {
	margin-top: -2rem;
	padding-top: 1.25rem;
	border-top-left-radius: 2.5rem;
	border-top-right-radius: 2.5rem;
	background:	linear-gradient(to bottom, rgb(7, 30, 72), rgba(2, 9, 22));
	z-index: 100;
}
.login_pg .pannel .toggler {
	width: 90%;
	margin: auto;
	margin-bottom: 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	text-align: center;
	background: var(--color-pannel);
	border-radius: 3rem;
	padding: 0.35rem;
}
.login_pg .pannel .toggler .slid {
	padding: 0.75rem 0;
	letter-spacing: 1px;
	opacity: 0.5;
	transition: all 0.5s ease;
}
.login_pg .pannel .toggler .slid.active {
	background: rgb(7, 30, 72);
	border-radius: 3rem;
	opacity: 1;
}

.login_pg .toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	transition: transform 0.5s ease;
	width: 100vw;
}
.login_pg .toggle .container {
	width: 100vw;
}
.login_pg .toggle .login_cont {
	width: 90%;
	margin: auto;
}
.login_pg .toggle .login_cont .inputs {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 0.75rem 0.5rem;
	background: rgb(7, 30, 72);
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	align-items: center;
	border: 2px solid var(--color-bg);
}
.login_pg .toggle .login_cont .inputs i {
	font-size: 1.6rem;
	margin: 0 0.5rem;
	margin-right: 1rem;
	color: var(--color-hg);
}
.login_pg .toggle .login_cont .inputs .box {
	flex: 1;
}
.login_pg .toggle .login_cont .inputs .topic {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 1px;
	opacity: 0.85;
}
.login_pg .toggle .login_cont input {
	background: transparent;
	width: 100%;
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.05rem;
}
.login_pg .toggle .login_cont .otp_sec {
	opacity: 0.5;
}
.login_pg .toggle .login_cont .error_msg {
	display: none;
	text-align: center;
	font-size: 0.9rem;
	margin: -1rem 0;
	margin-bottom: -1.85rem;
	color: orangered;
	font-weight: 600;
	letter-spacing: 1px;
}
.login_pg .toggle .login_cont .login_btn {
	background: var(--color-hg);
	color: var(--color-bg);
	width: 100%;
	margin: 1.5rem auto;
	margin-top: 2.5rem;
	padding: 0.5rem 3rem;
	border-radius: 5rem;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
}

.login_pg .toggle .reg_cont {
	width: 90%;
	margin: auto;
}
.login_pg .toggle .reg_cont .brief {
	letter-spacing: 0.05rem;
	text-align: justify;
	font-size: 0.95rem;
}
.login_pg .toggle .reg_cont .register_now_btn {
	background: var(--color-hg);
	color: var(--color-bg);
	width: 100%;
	margin: 0.75rem auto;
	margin-top: 2rem;
	padding: 0.5rem 3rem;
	border-radius: 5rem;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
}
.login_pg .toggle .reg_cont .close_in_dis{
	text-align: center;
	letter-spacing: 0.05rem;
	color: var(--color-sec-hg);
	font-size: 0.95rem;
}	

 
/* ------------------------------PRE-LOADER--------------------------------- */

.pre_loder {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 8.5rem;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    top: 0;
    left: 0;
    z-index: 2000;
    transition: display 1s ease;
}

.pre_loder .loder_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre_loder .ring {
    width: 12rem;
    height: 12rem;
    border: 0px solid black;
    border-radius: 50%;
    position: absolute;
    border-color: #fff;
}

.pre_loder .ring:nth-child(1) {
    border-bottom-width: 8px;
    animation: loader1 1s linear infinite;
}

.pre_loder .ring:nth-child(2) {
    border-right-width: 8px;
    animation: loader2 1s linear infinite;
}

.pre_loder .ring:nth-child(3) {
    border-top-width: 8px;
    animation: loader3 1s linear infinite;
}


@keyframes loader1 {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
}

@keyframes loader2 {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes loader3 {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
}



.redirect_pg {
	width: 100vw;
	height: 100vh;
	background: radial-gradient(circle at 50% 50%, #1a2033, #1a2031, #1c2025);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	padding: 0 4rem;
}
.redirect_pg>* {
	display: flex;
	flex-direction: column;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.redirect_pg .welcome {
    font-family: "Lobster", sans-serif;
    font-style: normal;
	font-size: 4rem;
	color: #fff;
}
.redirect_pg .logo img {
	width: 100%;
	object-fit: contain;
}
.redirect_pg .qr img {
	border-radius: 2rem;
}
.redirect_pg .message {
	font-size: 1.25rem;
	color: #fff;
	font-weight: 700;
	margin-top: 1.5rem;
	text-align: center;
}

