* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --background: #f9f9f9;
    --text-secondary-clr: #6c6c6c;
    --text-primary-clr: #000000;
    --border-lightgrey-clr: #e4e5e5;
    --text-err-clr: #ff4d4f;
    --toggle-disaclk-clr: linear-gradient(180deg, #cfcfcf 0%, #969696 100%);
    --toggle-actclk-clr: linear-gradient(180deg, #ff7746 0%, #ffbd06 100%);
    --login-button: linear-gradient(90deg, #f8c333 40.81%, #f5b130 100%);

    --login-lt-bor-clr: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        #fdd054 100%
    );
    --login-rt-bor-clr: linear-gradient(white, white) padding-box,
        conic-gradient(
                from 81deg at 37.46% 59%,
                rgba(249, 187, 33, 0) -9.85deg,
                rgba(249, 187, 33, 0) 52.79deg,
                #ffef07 136.3deg,
                rgba(249, 187, 33, 0) 169.4deg,
                rgba(249, 187, 33, 0) 311.27deg,
                #ffef07 328.52deg,
                rgba(249, 187, 33, 0) 350.15deg,
                rgba(249, 187, 33, 0) 412.79deg
            )
            border-box;
    --login-rt-box-bor-clr: linear-gradient(white, white) padding-box,
        linear-gradient(120.8deg, #fede85 0.94%, #fedc81 100%) border-box;
    --togg-disable-gradie:linear-gradient(180deg, #fbfbfb -0.39%, #b1b1b1 98.24%);
    --togg-slider-check:linear-gradient(180deg, #fffde8 -0.39%, #fffdb4 98.24%);

    --bg-toast-green: linear-gradient(90.6deg, #40b131 -4.77%, #56ca61 109.65%);
    --bg-toast_orange: linear-gradient(
        271.15deg,
        #f8c63c 1.65%,
        #e46c61 163.1%
    );
    --bg-shadow-toast-msg: 0 5px 10px rgba(0, 0, 0, 0.1);
     --bg-white-clr: #fff;


}
.admin_login_main {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.admin_login_main_lt {
    width: 50%;
    position: relative;
    height: 100dvh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-image: url(/assets/images/custom-login/lt_bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.admin_login_main_con {
    max-width: 625px;
    width: 100%;
}
.lt_head {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--text-primary-clr);
    padding-bottom: 12px;
    position: relative;
}
.com_phara_lt {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-primary-clr);
    position: relative;
    z-index: 1;
}
.lt_padd {
    padding-bottom: 32px;
}
.com_sub_head {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    color: var(--text-primary-clr);
    font-size: 16px;
}
.lt_padd_btm {
    padding-bottom: 4px;
}
.admin_details_in {
    display: flex;
    align-items: center;
    gap: 24px;
}
.admin_details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-image: url(/assets/images/custom-login/lt_bg_btm.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 26px;
    position: relative;
    z-index: 1;
}
.dgn_bor {
    border-bottom: 1px solid;
    border-image-source: var(--login-lt-bor-clr);
    border-image-slice: 1;
    padding-bottom: 16px;
}
.admin_logo_lett{
    padding-bottom: 54px;
}
.a_logo {
    /* padding-bottom: 54px; */
    display: block;          
    max-width: 100%;        
    height: auto;            
    aspect-ratio: 367 / 358;
    /* object-fit: contain; */

}

/* RIGHT */
.admin_login_main_rt {
    width: 50%;
    position: relative;
    height: 100dvh;
    display: flex;
    padding: 50px;
    background-image: url(/assets/images/custom-login/rt_bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.admin_login_in {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.log_phara {
    padding-top: 8px;
    color: var(--text-secondary-clr);
    padding-bottom: 40px;
    text-align: center;
}
.admin_login_rt_con {
    max-width: 580px;
    width: 100%;
    padding: 16px;
    border-radius: 24px;
    background: var(--login-rt-bor-clr);
    border: 0.5px solid transparent;
    position: relative;
}
.admin_login_page {
    position: relative;
    padding: 24px 40px;
    border-radius: 12px;
    z-index: 1;
    width: 100%;
    background: var(--login-rt-box-bor-clr);
    border: 1px solid transparent;
}
.admin_login_page h2 {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    text-align: center;
}
.email_cont,
.passw_cont {
    padding-bottom: 20px;
}
.log_input,
.log_input_email {
    border: 1px solid var(--border-lightgrey-clr);
    padding: 10px;
    max-width: 468px;
    width: 100%;
    border-radius: 6px;
    margin-top: 4px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-primary-clr);
}
.eye_input {
    display: flex;
    position: relative;
}
input::placeholder {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary-clr);
}
.stay_phara {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-secondary-clr);
    padding-top: 4px;
}
.switch_remind {
    position: relative;
    width: 25px;
    height: 14px;
}
.switch_remind input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider_con {
    position: absolute;
    left: -8px;
    right: 0;
    top: -3px;
    bottom: 0;
    background: var(--toggle-disaclk-clr);
    border-radius: 10px;
    transition: 0.4s;
    cursor: pointer;
    padding: 2px;
}
.slider_con::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--togg-disable-gradie);
    border-radius: 50%;
    transition: 0.5s;
    right: 17px;
    top: 3px;
}
.switch_remind input:checked + .slider_con {
    background: var(--toggle-actclk-clr);
}
.switch_remind input:checked + .slider_con::before {
    transform: translateX(13px);
    background: var(--togg-slider-check);
}
.action_btn_login {
    display: flex;
    margin-top: 4px;
}
.remember_con {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-left: 7px;
}

.admin_log_btn {
    background: var(--login-button);
    width: 100%;
    border: none;
    padding: 13px 0px;
    border-radius: 8px;
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary-clr);
    margin-top: 40px;
    cursor: pointer;
}
.dbl_star_top {
    position: absolute;
    left: 13px;
    top: 13px;
}
.dbl_star_btm {
    bottom: 12px;
    right: 9px;
    position: absolute;
}
input:focus {
    outline: none;
}
.yellow_shodow {
    position: absolute;
    top: 41px;
    right: 0;
}
.yellow_shadow_01 {
    position: absolute;
    top: -18px;
    left: -37px;
}

input.error_bor_clr {
    border: 1px solid var(--text-err-clr);
}

.error_message {
    color: var(--text-err-clr);
    position: relative;
    /* top: -19px; */
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
}
.eye_show {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(-50%, -30%);
    width: 18px;
    cursor: pointer;
}
.eye_hide {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translate(-50%, -30%);
    width: 18px;
    cursor: pointer;
}
.login_button_disable{
    opacity:0.5;
    cursor: default;
    pointer-events: none;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .admin_login_main {
        flex-direction: column;
    }

    .admin_login_main_lt,
    .admin_login_main_rt {
        width: 100%;
        height: auto;
        padding: 30px;
        background-size: cover;
    }

    .admin_login_main_con,
    .admin_login_rt_con {
        max-width: 100%;
    }

    .admin_login_page {
        padding: 20px;
    }

    .log_input,
    .log_input_email {
        max-width: 100%;
    }

    .admin_log_btn {
        font-size: 14px;
    }

    .remember_con {
        flex-direction: column;
        align-items: flex-start;
    }
    .yellow_shadow_01 {
        top: 2px;
    }
}

@media (max-width: 600px) {
    .lt_head {
        font-size: 24px;
    }

    .com_sub_head {
        font-size: 14px;
    }

    .com_phara_lt {
        font-size: 13px;
    }

    .admin_login_page h2 {
        font-size: 20px;
    }

    .admin_log_btn {
        padding: 10px 0;
    }

    .dbl_star_top,
    .dbl_star_btm {
        display: none;
    }
}
@media screen and (min-height: 631px) and (max-height: 799px) and (min-width: 1025px) {
    .a_logo  {
        max-width: 270px;
    }
    .admin_logo_lett {
        padding-bottom: 20px;
    }
    .lt_padd{
        padding-bottom: 20px;
    }
    .admin_details{
        padding: 13px 26px; 
    }
}
@media screen and (max-height: 630px) and (min-width: 1025px) {
    .a_logo  {
        max-width: 200px;
    }
    .admin_logo_lett {
        padding-bottom: 10px;
    }
    .lt_padd{
        padding-bottom: 10px;
    }
    .admin_details{
        padding: 13px 26px; 
    }
}

