html,body {
	margin:0;
	background-color: #ffffff;
	min-width: 320px;
	min-height: 500px;
	font-family: 'Poppins', sans-serif;
}
.container_login {
	position: relative;
	display: flex;
	height: 100vh;
	width: 100%;
	min-width: 320px;
	min-height: 500px;
	justify-content: center;
	align-items: center;
}
.container_user_login {
	position: relative;
	display: flex;
	height: 450px;
	width: 350px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	overflow: hidden;
}
.errshow {
	position: absolute;
	height: 0px;
	width: 100%;
	color: #D8000C;
	background-color: #FFD2D2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: height 0.5s;
	font-size: 14px;
	z-index: 5;
}
.errmaxhgt {
	height: 40px;
	transition: height 0.5s;
}
.container_user_forgot_pass {
	position: relative;
	display: flex;
	height: 340px;
	width: 350px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
}
.container_outer_setup {
	position: relative;
	display: flex;
	height: 100%;
	width: 100%;
	flex-direction: column;
}
.login_titles {
	position: relative;
	margin-top: 30px;
	height: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	border-radius: 8px;
}
.login_titlenme {
	font-size: 30px;
	font-weight: 400;
}
.login_pgewrk {
	font-size: 24px;
	font-weight: 500;
	height: 44px;
}
.login_cont {
	font-size: 14px;
}
.container_signin {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 210px;
	width: 100%;
	margin-top: 20px;
}
.container_forgot_pass {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100px;
	width: 100%;
	margin-top: 20px;
}
.container_mfa_login {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 80px;
	width: 100%;
	margin-top: 20px;
}
.inptgrp {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}
.signinnme {
	position: relative;
	height: 40px;
	width: 300px;
	margin: 5px;
	font-weight: 400;
	padding: 12px 10px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: none;
	box-sizing: border-box;
	overflow-y: hidden;
	font-size: 16px;
	user-select: none;
}
.signinnme:hover {
	border: 2px solid #e30022;
	padding: 11px 9px;
}
.signinnme:focus { 
	outline: 2px solid #e30022 !important;
	border-color: #e30022;
}
.lbleml {
	color:#999; 
	font-size:16px;
	font-weight:normal;
	position:absolute;
	pointer-events:none;
	user-select: none;
	left:36px;
	top:13px;
	padding-left: 4px;
	padding-right: 4px;
	height: 14px;
	transition:0.2s ease all;
	-moz-transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
.lblmvmt .signinnme:focus~.lbleml,
.lblmvmt .signinnme:not(:placeholder-shown)~.lbleml {
	top: -2px;
	border: none;
	font-size: 12px;
	background-color: white;
	color: #e30022;
}
.login_pass_css {
	position: relative;
	height: 40px;
	width: 300px;
	margin: 5px;
	font-weight: 400;
	padding: 12px 56px 12px 10px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: none;
	box-sizing: border-box;
	overflow-y: hidden;
	font-size: 16px;
	user-select: none;
}
.login_pass_css:hover {
	border: 2px solid #e30022;
	padding: 11px 56px 11px 9px;
}
.login_pass_css:focus { 
	outline: 2px solid #e30022 !important;
	border-color: #e30022;
}
.lblmvmt .login_pass_css:focus~.lbleml,
.lblmvmt .login_pass_css:not(:placeholder-shown)~.lbleml {
	top: -4px;
	border: none;
	font-size: 12px;
	background-color: white;
	color: #e30022;
}
.pass_show_btn {
	position: absolute;
	display: flex;
	right: 36px;
	cursor: pointer;
	color: #000000;
	background-color: #ffffff;
	user-select: none;
}
.pass_show_btn:hover {
	color: #000000b5;
}
.container_forgot_pass_btn {
	position: relative;
	cursor: pointer;
	color: #e30022;
	font-size: 16px;
	font-weight: 400;
	width: fit-content;
	user-select: none;
	margin-top: 5px;
	margin-left: 26px;
}
.btn_login_set {
	position: relative;
	display: flex;
	height: 40px;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.btn_login {
	position: relative;
	height: 40px;
	width: 300px;
	font-weight: 400;
	color: white;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	background-color: #e30022;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.3s;
}
.btn_login:hover {
	opacity: 1;
}
.btn_login:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.7s;
	box-shadow: 0 0 10px 40px red;
}
.btn_login:active {
	top: 1px;
}
.btn_login:active:after {
	box-shadow: 0 0 0 0 white;
	position: absolute;
	left: 0;
	top:0;
	opacity: 1;
	transition: 0s;
}
.link_txt_signup {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.sign_up_btn {
	position: relative;
	display: flex;
	user-select: none;
	color: #e30022;
	cursor: pointer;
}
.disabled-btn {
	pointer-events: none;
	color: #959595;
	background-color: rgb(232, 232, 232);
}
.container_mfa_vw_pge {
	position: relative;
	display: flex;
	height: 315px;
	width: 350px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
}
.container_mfa_pge {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 85px;
	width: 100%;
	margin-top: 20px;
}
.mfa_time_pending {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
	margin: 5px;
}
.mfa_time_pending a {
	color: #e30022;
	margin-left: 5px;
	text-decoration: none;
	cursor: pointer;
}
.mfa_time_pending a:hover {
	text-decoration: underline;
}
.mfa_signout_line:hover {
	text-decoration: underline;
}
.pntr_evnt_dis {
	pointer-events: none;
	color: #959595;
	background-color: rgb(232, 232, 232);
}
.change_email_wrg {
	margin-left: 5px;
	color: #0275dd;
	cursor: pointer;
	user-select: none;
}
.container_user_vfy_usr {
	position: relative;
	display: flex;
	height: 320px;
	width: 350px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
}
.vfy_fnt_bld {
	font-size: 16px;
	font-weight: 600;
}
.vfy_otp_txt {
	position: relative;
	cursor: pointer;
	color: black;
	font-size: 16px;
	font-weight: 400;
	width: fit-content;
	user-select: none;
	height: 25px;
	margin-top: 5px;
	margin-left: 26px;
}
.vfy_otp_txt a {
	color: #e30022;
	margin-left: 5px;
	text-decoration: none;
	cursor: pointer;
}
.vfy_otp_txt a:hover {
	text-decoration: underline;
}
.vfy_pge_return {
	position: relative;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	width: fit-content;
	user-select: none;
	height: 25px;
	margin-top: 5px;
	margin-left: 26px;
	color: #e30022;
	text-decoration: none;
	cursor: pointer;
}
.vfy_pge_return:hover {
	text-decoration: underline;
}
.cntnr_dsp_nn {
	display: none;
}
.btn_vfy_set {
	position: relative;
	display: flex;
	height: 40px;
	width: 100%;
	justify-content: center;
	align-items: center;
	top: -5px;
}
.vfy_sign_out_btn {
	position: relative;
	display: flex;
	font-size: 16px;
	font-weight: 400;
	width: 100%;
	height: 25px;
	color: black;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	justify-content: center;
	align-items: center;
}
.vfy_sign_out_btn a {
	color: #e30022;
	text-decoration: none;
	cursor: pointer;
}
.vfy_sign_out_btn a:hover {
	color: #e30022;
	text-decoration: underline;
}
.underline_css:hover {
	text-decoration: underline;
}
.container_signup {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 240px;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}
.signup_mult_cont {
	position: relative;
	display: flex;
	flex-direction: row;
	height: 50px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.signup_new {
	position: relative;
	height: 40px;
	width: 300px;
	margin: 5px;
	font-weight: 400;
	padding: 12px 10px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: none;
	box-sizing: border-box;
	overflow-y: hidden;
	font-size: 16px;
	user-select: none;
}
.signup_new:hover {
	border: 2px solid #e30022;
	padding: 11px 9px;
}
.signup_new:focus { 
	outline: 2px solid #e30022 !important;
	border-color: #e30022;
}
.sing_row_lbleml {
	color:#999; 
	font-size:16px;
	font-weight:normal;
	position:absolute;
	pointer-events:none;
	user-select: none;
	left:18px;
	top:13px;
	padding-left: 4px;
	padding-right: 4px;
	height: 14px;
	transition:0.2s ease all;
	-moz-transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
.lbl_singup_new .signup_new:focus~.sing_row_lbleml,
.lbl_singup_new .signup_new:not(:placeholder-shown)~.sing_row_lbleml {
	top: -4px;
	border: none;
	font-size: 12px;
	background-color: white;
	color: #e30022;
}
.signup_inpt_wdt {
	width: 145px;
}
.pass_shw_btn_singup {
	position: absolute;
	display: flex;
	right: 10px;
	cursor: pointer;
	color: #000000;
	background-color: #ffffff;
	user-select: none;
}
.pass_shw_btn_singup:hover {
	color: #000000b5;
}
.sing_pass_row_lbleml {
	color:#999; 
	font-size:16px;
	font-weight:normal;
	position:absolute;
	pointer-events:none;
	user-select: none;
	left:12px;
	top:13px;
	padding-left: 4px;
	padding-right: 4px;
	height: 14px;
	transition:0.2s ease all;
	-moz-transition:0.2s ease all;
	-webkit-transition:0.2s ease all;
}
.lbl_singup_pass .signup_new:focus~.sing_pass_row_lbleml,
.lbl_singup_pass .signup_new:not(:placeholder-shown)~.sing_pass_row_lbleml {
	top: -4px;
	border: none;
	font-size: 12px;
	background-color: white;
	color: #e30022;
}
.dob_inpt_wdt {
	width: 93px;
}