/* LOGIN TAB */
body {
	background-color: var(--login2_BODY_BG);
}

.login-2- .tablist- {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 22px 20px;
	font-size: var(--DEFAULT_FONT_SIZE);
}

.login-2- .tablist- ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.login-2- .tablist- ul li {
	padding: 14px 2px;
}

.login-2- .tablist- ul li a {
	padding: 8px 1rem;
    font-weight: var(--REG_FONT_WEIGHT);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--login2_TABLIST_COLOR);
    border-bottom: var(--login2_TABLIST_BORDER_BOTTOM_COLOR);
    text-decoration: none;
}

.login-2- .tablist- ul li a:hover,
.login-2- .tablist- ul li a.active {
    background-color: var(--login2_TABLIST_ACTIVE_BG);
    border-bottom: var(--login2_TABLIST_ACTIVE_BORDER_BOTTOM_COLOR);
    color: var(--login2_TABLIST_ACTIVE_COLOR);
}

.login-2- .tabcontent- {
	display: none;
    animation-name: fadeOut
}

.login-2- .tabcontent-.show {
	display: block;
    animation-name: fadeIn;
    animation-duration: .5s
}

.login-2- .form- {
	display: none;
    animation-name: fadeOut;
}

.login-2- .form-.show {
	display: block;
    animation-name: fadeIn;
    animation-duration: .5s;
}

/* DEFAULT LOGIN */
.login-header-section {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
	color: var(--login2_HEADER_TITLE_COLOR);
}

.login-header {
    font-size: var(--SECTION_HEADER_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    text-align: center;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 6px;
}

.login-header-desc {
    text-align: center;
    flex: 0 0 100%;
    max-width: 100%;
    font-size: var(--BODY_TXT_FONT_SIZE);
}

.login-form-section {
	justify-content: center;
	display: flex;
    margin-top: 8px;
}

.login-form {
	background-color: var(--login2_LOGIN_FORM_BG);
	margin-bottom: 48px;
    max-width: 33.3333333333%;
    color: var(--login2_LOGIN_FORM_COLOR);
}

.fill-up-form {
	justify-content: center;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.field-group {
	margin-bottom: 35px;
	display: flex;
	flex: 1 1 auto;
    flex-wrap: wrap;
    font-size: var(--SUBHEADER_FONT_SIZE);
}

.label-group {
	padding: 0;
	font-size: var(--BODY_TXT_FONT_SIZE);
}

.input-group {
    margin-bottom: 2px;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.input-group input, .selection-group {
    border-radius: 13px;
    border: var(--login2_LOGIN_FORM_INPUT_BORDER_COLOR);
    color: var(--login2_LOGIN_FORM_INPUT_COLOR);
    font-size: var(--BODY_TXT_FONT_SIZE);
    padding: 0 12px;
    max-width: 100%;
	width: 100%;
    min-height: 40px;
    height: 40px;
}

.selection-group {
	width: 95%;
	padding: 0 8px;
}

.input-group input::placeholder {
	color: var(--login2_LOGIN_FORM_INPUT_PLACEHOLDER_COLOR);
}

.login-2- .loginPswdVisi- {
	position: absolute;
    width: fit-content;
    height: fit-content;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: var(--ICON_SMALL_FONT_SIZE);
    cursor: pointer;
    color: var(--login2_LOGIN_FORM_ICON_COLOR);
}

.rmb-field {
	margin-right: 3px;
	margin-top: -20px;
	font-size: var(--DEFAULT_FONT_SIZE);
}

.login-2- .field-group input[type=checkbox] {
	width: fit-content;
}

.checkbox-group {
	gap: 5px;
	justify-content: right;
	display: flex;
    flex-wrap: wrap;
}

.login-button, .confirm-button, .sign-up-button {
	min-width: 64px;
	width: 100%;
	min-height: 40px;
	height: auto;
	border-radius: 13px;
	font-size: var(--BUTTON_LARGE_FONT_SIZE);
	background-color: var(--login2_LOGIN_FORM_BTN_BG);
	color: var(--login2_LOGIN_FORM_BTN_COLOR);
	border: var(--login2_LOGIN_FORM_BTN_BORDER);
}

.confirm-button, .sign-up-button {
	min-height: 40px;
}

.login-button:before {
	transition: opacity .2s cubic-bezier(.4,0,.6,1);
}

.login-button:hover {
	background-color: var(--login2_LOGIN_FORM_BTN_HOVER_BG);
	color: var(--login2_LOGIN_FORM_BTN_HOVER_COLOR);
}

.forgot-psw {
	display: block;
	padding-bottom: 5px;
	text-decoration: underline;
	color: var(--login2_FORGOT_PSW_COLOR);
	font-size: var(--DEFAULT_FONT_SIZE);
}

.register-now-label {
	font-size: var(--DEFAULT_FONT_SIZE);
	text-align: center;
}

.register-text {
	text-decoration: underline;
	color: var(--login2_REGISTER_NOW_COLOR);
}

.login-form-divider {
	border-width: 2px;
	border-color: var(--login2_LOGIN_FORM_DIVIDER_BORDER_COLOR);
	margin: 0;
}

.login-form-msg {
	font-size: var(--DEFAULT_FONT_SIZE);
	margin-top: 20px;
}

.fill-up-form i {
	font-size: var(--ICON_FONT_SIZE);
}

.tooltip-container {
	position: relative;
	display: inline-block;
}

.tooltip-text {
	visibility: hidden;
	width: 280px;
	background-color: var(--login2_TOOLTIP_BOX_BG);
	color: var(--login2_TOOLTIP_BOX_COLOR);
	text-align: center;
	padding: 10px 0;
	border-radius: 6px;
	position: absolute;
  	z-index: 1;
  	bottom: 0%;
  	left: 110%;
  	transform: scale(0);
  	opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    line-height: 15px;
}

.tooltip-container:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

/* SMS LOGIN */
.login-2- .login-subsubmit- {
	padding: 8px 25px;
	font-size: var(--BUTTON_MED_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
	height: 100%;
	border-radius: 10px;
	color: var(--login2_REQUEST_OTP_BTN_COLOR);
	background-color: var(--login2_REQUEST_OTP_BTN_BG);
	border: var(--login2_REQUEST_OTP_BTN_BORDER);
}

.login-2- .login-subsubmit-:hover {
	color: var(--login2_REQUEST_OTP_BTN_HOVER_COLOR);
	background-color: var(--login2_REQUEST_OTP_BTN_HOVER_BG);
}

.login-2- .login-subsubmit-:disabled {
	color: var(--login2_REQUEST_OTP_BTN_DISABLED_COLOR:);
	background-color: var(--login2_REQUEST_OTP_BTN_DISABLED_BG);
}

.login-2- .otpTimer- {
	position: absolute;
    width: 100%;
    height: 100%;
    text-align: right;
    z-index: 2;
    border-radius: 10px;
    color: var(--login2_REQUEST_OTP_TIMER_COLOR);
    background-color: var(--login2_REQUEST_OTP_TIMER_BG);
    font-size: var(--DEFAULT_FONT_SIZE);
    right: 5px;
    padding-top: 3px;
}

.login-2- .otpTimer- span i {
	font-size: var(--LOGIN_REQUEST_OTP_TIMER_ICON_FONT_SIZE);
}

/* WHATSAPP LOGIN */
.whatsappForgotClick_ {
	height: 40px !important;
}

/* FORGOT PASSWORD */
.fgt-psw-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--login2_FORGOT_PSW_MODAL_BG);
}

.fgt-psw-modal-header {
	font-size: var(--HEADER_FONT_SIZE);
}

.fgt-psw-modal-content {
    position: relative;
    background-color: var(--login2_FORGOT_PSW_MODAL_CONTENT_BG);
    margin: 2% auto;
    padding: 26px;
    width: 28%;
    height: auto;
    border-radius: 8px;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}

.fgt-psw-modal-close {
    position: absolute;
    right: 6px;
    top: 38px;
    font-size: var(--LOGIN_FORGOT_PSW_MODAL_CLOSE_ICON_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    cursor: pointer;
    color: var(--login2_FORGOT_PSW_MODAL_CLOSE_ICON_COLOR);
}

.fgt-psw-modal.show .fgt-psw-modal-content {
    transform: scale(1);
}

.whatsapp-fgt-psw-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--login2_WHATSAPP_FORGOT_PSW_MODAL_BG);
}

.whatsapp-fgt-psw-modal-header {
	font-size: var(--HEADER_FONT_SIZE);
}

.whatsapp-fgt-psw-modal-content {
	position: relative;
    background-color: var(--login2_WHATSAPP_FORGOT_PSW_MODAL_CONTENT_BG);
    margin: 2% auto;
    padding: 26px;
    width: 28%;
    height: auto;
    border-radius: 8px;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-fgt-psw-modal-close {
	position: absolute;
    right: 6px;
    top: 38px;
    font-size: var(--LOGIN_WHATSAPP_FORGOT_PSW_MODAL_CLOSE_ICON_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    cursor: pointer;
    color: var(--login2_WHATSAPP_FORGOT_PSW_MODAL_CLOSE_ICON_COLOR);
}

.whatsapp-fgt-psw-modal.show .whatsapp-fgt-psw-modal-content {
	transform: scale(1);
}

.dstg-register-tab {
	display: flex;
}

.dstg-tab-option {
	border-bottom: var(--login2_FORGOT_PSW_TABLIST_BORDER_BOTTOM_COLOR);
    background-color: var(--login2_FORGOT_PSW_TABLIST_BG);
    color: var(--login2_FORGOT_PSW_TABLIST_COLOR);
    transition: .3s;
    padding: 6px;
    cursor: pointer;
    font-weight: var(--REG_FONT_WEIGHT);
    font-size: var(--BODY_SMALL_TXT_FONT_SIZE);
    text-align: center;
}

.dstg-tab-option.active, .dstg-tab-option:hover {
	border-bottom: var(--login2_FORGOT_PSW_TABLIST_ACTIVE_HOVER_BORDER_BOTTOM_COLOR);
    background-color: var(--login2_FORGOT_PSW_TABLIST_ACTIVE_HOVER_BG);
    color: var(--login2_FORGOT_PSW_TABLIST_ACTIVE_HOVER_COLOR);
}

.confirm-button {
    background-color: var(--login2_FORGOT_PSW_CONFIRM_BTN_BG);
    color: var(--login2_FORGOT_PSW_CONFIRM_BTN_COLOR);
}

.sign-up-button {
    background-color: var(--login2_FORGOT_PSW_SIGN_UP_BTN_BG);
}

.sign-up-button:hover {
	background-color: var(--login2_FORGOT_PSW_SIGN_UP_BTN_HOVER_BG);
	color: var(--login2_FORGOT_PSW_SIGN_UP_BTN_HOVER_COLOR);
}