/* Auth Pages */
.auth_page {
	padding: 50px 15px;
	margin: 100px auto;
	/* width: 550px; */
}

.auth_page_wrapper {
	padding: 24px;
	background: #0C7DCB1A;
	border-radius: 16px;
	width: 550px;
}

.auth_title {
	font-family: 'Poppins';
	font-size: 36px !important;
	font-weight: bold !important;
	line-height: 44px !important;
	color: #073752 !important;
	text-align: center;
	margin: 0 0 24px !important;
}

.auth_page .form_check_box .checkbox_text,
.auth_page .form-group label{
	font-family: 'Poppins';
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: block;
	margin-bottom: 4px;
}

.auth_page .form-group input, 
.auth_page .form-group select, 
.auth_page .form-group textarea {
    border: 1px solid #41beb1;
    height: auto;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 12px;
    background: #FCFCFC;
    width: 100%;
    font-family: 'Poppins';
}

.form-group input,
.form-group select,
.form-group textarea {
	border: 1px solid #DEE1E4;
	height: 48px;
	padding: 0 15px;
	font-size: 16px;
	line-height: 24px;
	border-radius: 12px;
	background: #FCFCFC;
	width: 100%;
	box-shadow: 0px 2px 0px 0px #E7EBEE33 inset;
}

.form-group textarea {
	height: 100px;
	display: flex;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	box-shadow: unset;
	outline: none !important;
}

.form-group .icon-inner {
	position: relative;
}

.form-group .icon-inner input {
	padding-right: 40px;
}

.form-group .icon-inner .toggle-password {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-group .icon-inner .toggle-password svg {
	width: 100%;
	height: 100%;
}

.form-group .icon-inner .toggle-password .close {
	display: none;
}

.form-group .icon-inner .toggle-password.icon-41 .close {
	display: flex;
}

.form-group .icon-inner .toggle-password.icon-41 .open {
	display: none;
}

.error-msg {
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
	color: #d12127;
	font-family: 'Poppins';
}

.form_check_box {
	font-family: "Roboto", Sans-serif;
	font-size: 14px;
	font-weight: 400;
	position: relative;
}

.form_check_box input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.form_check_box .checkbox_text {
	padding-left: 24px;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	display: block;
	cursor: pointer;
	font-family: 'Poppins';
}


.form_check_box .checkbox_text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	transform: none;
	width: 18px;
	height: 18px;
	border: 1px solid #111827;
	border-radius: 4px;
	background: #fff;
	/* transition: background 0.2s, border-color 0.2s; */
}
.forgot_password,
.back_btn{
	font-family: 'Poppins';
	color:  #111827;
	text-decoration: underline;
}
.forgot_password:focus,
a:focus,
.back_btn:focus{
	outline: none;
	color: #000;
}

.form_check_box input:checked~.checkbox_text::before {
	background: #111827;
	border-color: #111827;
}

.form_check_box .checkbox_text::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 6px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -2px;
}

.login_page .form_check_box {
	margin-bottom: 24px;
}

.auth_page_wrapper .common_orange_btn,
.auth_page_wrapper .common_orange_btn:hover {
	width: 100%;
	border-radius: 12px;
}


.auth_page_wrapper .common_orange_btn {
	margin-bottom: 16px;
}




.sign-up-text {
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 0;
	color: #073752;
}
.sign-up-text a{
	color: #073752;
	text-decoration: underline;
}

.sign-up-text a:focus{
	outline: none;
}

/* .form_check_box .checkbox_text a:hover,
.sign-up-text a:hover,
.auth_page_wrapper .back_btn:hover {
	color: #f25929;
} */

.auth_page_wrapper .back_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 16px auto 0;
	font-family: 'Poppins';
    color: #111827;
    text-decoration: underline;
}
.font_regular_16 {
    font-size: 16px;
    font-family: 'Poppins';
    text-align: center;
}
.check-forgot_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.check-forgot_wrapper .form_check_box {
	margin-bottom: 0;
}

.check-forgot_wrapper .forgot_password:hover {
	color: #323436;
}

.alert-messages {
	background-color: #ffcfcc;
	border: 1px solid #f44336;
	border-left: 9px solid #f44336;
	color: #f44336;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 16px;
	font-family: 'Poppins';
}

.alert-messages.success {
	border: 1px solid #0f4e37;
	border-left: 9px solid #0f4e37;
	background-color: #c8dfd6;
	color: #0f4e37;
	font-family: 'Poppins';
}

.alert-messages.warning {
	border: 1px solid #ff9800;
	border-left: 9px solid #ff9800;
	background-color: #ffe1b5;
	color: #ff9800;
	font-family: 'Poppins';
}

.alert-messages.info {
	border: 1px solid #2196F3;
	border-left: 9px solid #2196F3;
	background-color: #c3d9eb;
	color: #2196F3;
	font-family: 'Poppins';
}

.sub-menu.elementor-nav-menu--dropdown {
    padding: 5px !important;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 0px 16px 0px #00000029;
}

.sub-menu.elementor-nav-menu--dropdown .elementor-sub-item{
	margin: 0;
	padding: 12px !important;
	border-radius: 6px;
	border: 1px solid #ffffff;
}
.sub-menu.elementor-nav-menu--dropdown .elementor-sub-item:hover,
.sub-menu.elementor-nav-menu--dropdown .elementor-sub-item.elementor-item-active{
	background: #d12127 !important;
	color: #ffffff !important;
}




/* ========================= other = css =========================== */

.auth_page_wrapper .common_orange_btn {
    margin-bottom: 16px;
    background: #41beb1;
    color: #ffffff;
    font-family: 'Poppins';
    border: 1px solid #41beb1;
}

.auth_page_wrapper .common_orange_btn:hover{
	color: #41beb1;
	background: #ffffff;
}
.sign-up-text {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin-top: 0;
    font-family: 'Poppins';
}

.registration_page.auth_page_wrapper{
	width: 650px;
}
.form-row.two_cols{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 15px;
}
/* .form-row.two_col form-group */

a.icon.icon-29.toggle-password .open_eye,
a.icon.icon-29.toggle-password.icon-41 .close_eye{
	display: none;
}

a.icon.icon-29.toggle-password .close_eye,
a.icon.icon-29.toggle-password.icon-41 .open_eye{
	display: inline-block;
	color: #000;
}
a.icon.icon-29.toggle-password.icon {
	position: absolute;
	width: 30px;
	right: 10px;
	top: 40px;
}
.login_form .form-group{
	position: relative;
}
a.icon.icon-29.toggle-password .close_eye {
width: 20px;
}
.update_txt{
	text-align: center;
	font-family: 'Poppins';
}

.update_txt a{
	color: #073752;
	text-decoration: underline;
}

.page-id-990 article#post-990 {
    margin: 150px auto;
    max-width: 550px;
    background: #0C7DCB1A;
    padding: 30px;
    border-radius: 20px;
}
.page-id-990 header.entry-header .entry-title {
    text-align: center;
    font-family: 'Poppins';
    font-size: 36px !important;
    font-weight: bold !important;
    line-height: 44px !important;
    color: #073752 !important;
    text-align: center;
    margin: 0 0 24px !important;
}
form.post-password-form p {
    font-size: 16px;
    font-family: 'Poppins';
	text-align: center;
}

.post-password-form label {
    font-family: 'Poppins';
    text-align: left;
}

.post-password-form {
    text-align: left;
}

.post-password-form input[type="password"] {
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #41beb1;
    border-radius: 10px;
	margin-top: 5px;
}

.post-password-form input[type=submit] {
    padding: 10px 20px;
    border-radius: 2px;
    width: 100%;
    background: #41beb1;
    padding: 15px 12px;
    border-radius: 10px;
    font-family: 'Poppins';
	border: 1px solid #41beb1;
}
form.post-password-form p label {
    text-align: left;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-family: 'Poppins';
}
.post-password-form input[type=submit]:hover{
	background: #ffffff;
	color: #41beb1;
}

.registration-note p{
	font-family: 'Poppins';
}

.accordian_supplier_section{
    position: relative;
}

body .accordian_supplier_section:before{
    content: '';
    background: url(../images/cyan_flower.svg);
    position: absolute;
    left: 20px;
    top: 32px;
	width: 236px !important;
    height: 239px !important;
}
.accordian_supplier_section:after {
    content: '';
    background: url(../images/cyan_flower.svg) no-repeat;
    position: absolute;
    right: 20px;
    top: 32px;
    width: 236px !important;
    height: 239px !important;
}
/* .open-supplier-popup {
    background: none;
    padding: 0;
    border: 1px solid #2F9895;
    border-radius: 9px;
    overflow: hidden;
    max-width: 230px;
} */
/* .open-supplier-popup:hover{
    border: 1px solid #2F9895;
}
.supplier-popup-header img {
            
    max-width: 159px;
    border-radius: 6.3px !important;
    height: 100%;
    margin-bottom: 20px;
} */
.supplier-popup-text {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #073752;
}
.popup_btns{
    padding: 15px 40px;
    gap: 10px;
    background: #073752;
    border: 1px solid #073752;
    border-radius: 30px;
    width: calc(50% - 10px);
}

    .center_imgs .img_first {
        position: absolute !important;
        left: 0;
        margin-bottom: 0;
    }

	.center_imgs .img_two {
		position: absolute !important;
		left: 100px;
		bottom: 67px;
	}

    .center_imgs .img_four {
        position: absolute !important;
        right: -16px;
        top: 0;
		z-index: 11;
    }
    .faq_accordian .e-n-accordion-item[open]{
    background: #E7F2FA;
}
.img_center_logo{
	display: flex;
	align-items: center;
	justify-content: center;
}
body .center_imgs:before {
    content: '';
    background: url(../images/cyan_flower.svg) no-repeat;
    position: absolute;
    left: 30px;
    top: 240px;
    width: 140px !important;
    height: 140px !important;
    background-size: contain;
}
body .center_imgs:after{
	content: '';
    background: url(../images/cyan_flower.svg);
    position: absolute;
    right: 0px;
    bottom: -59px;
    width: 236px !important;
    height: 239px !important;
}
.cyan_links {
    color: #3FC1B1;
    text-decoration: none !important;
}
.img_center_logo img{
	align-self: center;
}

@media only screen and (max-width: 1200px){
	.hero_right_img{
		overflow: hidden;
	}
	.center_imgs{
		position: relative;
	}
	.center_imgs .img_four{
		right: 0;
	}
	/* .center_imgs .img_first,
	.center_imgs .img_two,
	.center_imgs .img_four {
        position: static !important;
    } */
	.center_imgs .img_four{
		right: 0;
	}
}

@media only screen and (max-width: 921px){

	.auth_page{
		padding: 50px 15px;
		min-width: 100%;
	}
	.check-forgot_wrapper{
		flex-wrap: wrap;
		row-gap: 15px;
	}
	.registration_page.auth_page_wrapper {
		width: 100%;
	}
}


@media only screen and (max-width: 767px) {
	.auth_page_wrapper {
		padding: 24px 15px;
		width: 100%;
	}

	.auth_title {
		font-size: 24px !important;
		line-height: 32px !important;
	}
	.form-row.two_cols {
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 15px;
	}
	.page-id-990 article#post-990{
		max-width: 100%;
	}
	.center_imgs .img_first,
	.center_imgs .img_two ,
	.center_imgs .img_four {
        position: static !important;
    }
	.accordian_supplier_section:after{
		display: none;
	}
		
}

.elementor-shortcode .auth_page{
display: flex;
justify-content: center;
margin: unset;
}


/* Registration Popup Modal Styles */
.registration-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.registration-popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 100000;
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.registration-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.registration-popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.registration-popup-body {
    padding: 30px;
}

.registration-popup-message {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.registration-popup-message.success {
    color: #28a745;
}

.registration-popup-message.error {
    color: #dc3545;
}

.registration-popup-message p {
    margin: 0 0 10px 0;
}

.registration-popup-message p:last-child {
    margin-bottom: 0;
}

.registration-popup-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.registration-popup-ok {
    min-width: 120px;
}

.common_orange_btn.registration-popup-ok {
    margin-bottom: 16px;
    background: #41beb1;
    color: #ffffff;
    font-family: 'Poppins';
    border: 1px solid #41beb1;
}