*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	height: 100vh;
	overflow: hidden;
}
::-webkit-scrollbar{
	width: 8px;
	height: 8px;
	background-color:#1910a317;
}
::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-image:-webkit-linear-gradient(330deg, #f093fb 0%, #f5576c 100%);
	background-image:linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}
::-webkit-scrollbar-track{
	-webkit-box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color:#F5F5F5;
	border-radius:10px;
}


#overlay {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
}
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



section{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	background:url('../../Main-Imagess/Login/login_back.jpg') no-repeat;
	background-size: cover;
	background-position: center;
	animation: animatebg 5s linear infinite;
}
@keyframes animatebg{
	100%{
		filter: hue-rotate(360deg);
	}
}
.login-box{
	position: relative;
	width: 400px;
	height: 450px;
	background: transparent;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255,255,255,.5);
	border-radius: 20px;
	letter-spacing: 2px;
}
h2{
	font-size: 2em;
	color: #fff;
	text-align: center;
}
.input-box{
	position: relative;
	width: 310px;
	margin: 30px 0;
	border-bottom: 2px solid #fff;
}
.input-box label{
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 1em;
	color: #fff;
	transition: 0.5s cubic-bezier(0.5,1,0.5,1.5);	
}
.input-box input:focus~label , 
.input-box input:valid~label{
	top: -3px;
}
.input-box input{
	width: 100%;
	height: 50px;
	background: transparent;
	border: none;
	outline: none;
	font-size: 1em;
	color: #fff;
	padding: 0 35px 0 5px;
	letter-spacing: 2px;
}
.input-box .icon{
	position: absolute;
	right: 8px;
	color: #fff;
	font-size: 1.2em;
	line-height: 57px;
}
.remember-forget{
	margin: -15px 0 15px;
	font-size: .9em;
	color: #ffff;
	display: flex;
	justify-content: space-between;
}
.remember-forget label input{
	margin-right: 3px;
}
.remember-forget a{
	color: #fff;
	text-decoration: none;
}
.remember-forget a:hover{
	text-decoration: underline;
}
.login-box button{
	width: 100%;
	height: 40px;
	background: #fff;
	border: none;
	outline: none;
	border-radius: 40px;
	cursor: pointer;
	font-size: 1em;
	color: #000;
	font-weight: 500;
}
.register-link{
	font-size: .9em;
	color: #fff;
	text-align: center;
	margin: 25px 0 18px;
}
.register-link p a{
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.register-link p a:hover{
	text-decoration: underline;
}
.row-head button{
	width: auto;
	color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
        display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toastBox {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    opacity: 1;
    z-index: 2;
}
.toasts{
	opacity: 1;
	width: 300px;
	height: 50px;
	background: #fff;
	font-weight: 500;
	box-shadow: 0 0 20px rgb(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	position: relative;
	border-radius: 25px 0 25px 0;
	transform: translateY(100%);
	animation: toastLeft 0.5s linear forwards;
	margin-bottom: 10px;
    background-image: linear-gradient(108deg, #eb0c691f 0%, #57f55c 100%);
}
@keyframes toastLeft{
	100%{
		transform: translateY(0);
	}
}
.toasts i{
	margin: 0 20px;
	font-size: 35px;
	color: orange;
}
.toasts::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background:orange ;
	animation: toastAni 5s linear forwards;
}
@keyframes toastAni{
	100%{
		width: 0;
	}
}
.Img_Borders{
	border: 2px dashed #bbb5ff !important;
}


.popup-Registered{
	position: fixed;
	top: 50%;
	left: 50%;
	width: 0%;
	height: 0%;
	transform: translateY(-50%);
	overflow: hidden;
	
	z-index: 2;
}
.popup-Registered .content-Registered{
	padding: 30px 20px;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	opacity: 0;
	overflow: hidden;
}
.popup-Registered .content-Registered .popup-Registered-close-btn{
	position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 35px;
    color: #111;
    font-size: 30px;
    cursor: pointer;
    border-radius: 50%;
    background: #d5aed4 !important;
}
table, th, td {
    border: 1px solid black !important;
    border-collapse: collapse;
    text-align: center;
    padding: 2px 5px 2px 5px;
}
.popup-Registered .content-Registered .popup-Registered-close-btn:hover{
	background: #eee;
}
.popup-Registered.active{
	animation: popupAnimation_Registered 1500ms ease-in-out forwards;
}
.popup-Registered.active .content-Registered{
	opacity: 1;
	transition: all 300ms ease-in-out 1500ms;
}
@keyframes popupAnimation_Registered{
	0%{
		width: 0%;
		height: 0%;
	}
	100%{
		width: 100%;
		height: 100%;
		left: 0%;
	}
}

/* Forgot user Name */
.userForget .table,.PassForget  .table{
	height: -webkit-fill-available;
}
.userForget .popup-Registered .content-Registered .form-content .table,.PassForget .popup-Registered .content-Registered .form-content .table{
	background-color: #d5aed4 !important;
}



@media (max-width:360px)
{
	.login-box{
		width: 100% !important;
		height: 100vh !important;
		border: none !important;
		border-radius: 0;
	}
	.input-box{
		/*width: 290px;*/
	}
	.form-content .table .row {
    	display: block;
	}

	/* Registration Popup */
	.images span{
		display: block;
		font-size: 0.8em;
		width: 100%;
	}
}
@media (max-width:1200px){
	.form-content{
		width: 100% !important;
		margin: 0 !important;
	}
	.popup-Reg.active .content-Reg{
		padding: 30px 0;
	}
}


/* Registration Popup */

.row .user_Name{
	letter-spacing: 2px;
    font-size: 2rem;
    font-weight: 600;
    background: -webkit-linear-gradient(rgb(235 15 196), rgb(212 4 186), rgb(22 188 217), rgb(40 210 20));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000017;
}
.popup-Reg{
	position: fixed;
	top: 50%;
	left: 50%;
	width: 0%;
	height: 0%;
	transform: translateY(-50%);
	background: #c0b9c7;
	overflow: hidden;
	background-color: #dbc1d7;
	z-index: 2;
}
.popup-Reg .content-Reg{
	padding: 5px 20px;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	opacity: 0;
	/*overflow: hidden;*/
}
.popup-Reg .content-Reg .popup-Reg-close-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 35px;
	color: #111;
	font-size: 30px;
	cursor: pointer;
	border-radius: 50%;
}
.popup-Reg .content-Reg .popup-Reg-close-btn:hover{
	background: #eee;
}
.popup-Reg.active{
	animation: popupAnimation 1500ms ease-in-out forwards;
}
.popup-Reg.active .content-Reg{
	opacity: 1;
	transition: all 300ms ease-in-out 1500ms;
}
@keyframes popupAnimation{
	0%{
		width: 0%;
		height: 0%;
	}
	/*50%{
		width: 50%;
		height: 50%;
		left: 25%;
	}*/
	100%{
		width: 100%;
		height: 100%;
		left: 0%;
	}
}
.popup-Reg .content-Reg h1{
	text-align: center;
	background: -webkit-linear-gradient(rgb(144, 12, 241,1), rgb(212, 4, 177,1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: #00000017;
    text-decoration: underline;
}
.popup-Reg .content-Reg p{
	color: #e73229;
	text-align: center;
}
.form-content{
	display: block;
	/*border: 2px solid greenyellow;*/
	width: 80%;
	align-items: center;
	text-align: center;
	align-content: center;
	margin: 0 10% ;
	height: calc(100% - 25%)!important;
	overflow-y: auto;
	background-color: #7b217c;
    border-radius: 5px;
}
.form-content2 {
    display: block;
    /*border: 2px solid greenyellow;*/
    width: 80%;
    align-items: center;
    text-align: center;
    align-content: center;
    margin: 0 10%;
    /*height: calc(100% - 10%) !important;*/
    overflow-y: auto;
    background-color: #7b217c;
    border-radius: 5px;
}
#reg_options button{
	width: auto;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#reg_res{
	background: -webkit-linear-gradient(rgb(51 15 235), rgb(4 30 212), rgb(32 40 40), rgb(31 219 193 / 96%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000017;
    font-weight: 600;
}
.form-content .row,.form-content2 .row{
	display: inline-flex;
}
.form-content .table,.form-content2 .table{
	margin: 1px;
	border: 1px solid rgba(122,4,156,2);
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	background-color: #d5aed4;
}
.form-content .table .row-head,.form-content2 .table .row-head{
	font-size: 1.2em;
	margin: 1em 1em 0.5em 0.5em;
}
.form-content .table .row .colum,.form-content2 .table .row .colum{
	margin: 0 1em 0 1em;
    
}

.form-content .table .row .colum select,.form-content2 .table .row .colum select{
	border: none;
    outline: none;
    background: transparent;
    font-size: 0.95em;
    color: #d624d9;
    border-bottom: 2px solid #fff;
}

.input-t {
	position: relative;
	width: 100%;
	margin-top: 5px !important;
}

.input-t label{
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 1em;
	color: #dd4e4e;
	letter-spacing: 0.5px;
	transform: translateY(-50%);
	transition: 0.5s cubic-bezier(0.5,1,0.5,1.5);
}
.input-t input:focus~label{
	top: -7px;
	color: #103ad5;
}
.input-t input:valid~label{
	top: -7px;
	color: #1d8111;
}

.input-t input{
	border: none;
	outline: none;
	color: #d624d9;
	background: transparent;
	font-size: 1em;
	letter-spacing: 2px;
	border-bottom: 2px solid #fff;
}
.images{
	display: block;
	align-items: center;
	justify-content: center;
}
.aadhar-label{
	padding: 0px 0px 200px 0px;
	background: #fff;
	text-align: center;
	border-radius: 20px;
}
.colum label .img-view img{
	width: 100px;
	height: 100px;
}
.img-view{
	width: 100%;
	height: 150px;
	border-radius: 2px;
	border: 2px dashed #bbb5ff;
	background: #f7f8ff;
	align-items: center;
	align-content: center;
	background-position: center top;
	background-size: 100% 100%;
}
.images span{
	font-size: 1rem;
    width: 250px;
    display: block;
}
.row .i_agree{
	width: 20px;
    height: 20px;
}
.row .i_agree ~ label{
	margin-left: 10px;
    font-size: 20px;
}
.popup-Registered .content-Registered .form-content .table{
	background: #fff !important;
}
.popup-Registered .content-Registered .form-content{
	border: none !important;
}