.recover_pass_label span{
        color: #FFF !important;
}
#login-box,
.form-box .body, .form-box .footer{

    background: transparent;
}
.clear-both{
    clear: both;
}
.white-bg-login .fb-login-box h2 {
    color: #FFFFFF;
}
.fb-wrapper #login-box .header {
    background: transparent !important;
    border: none !important;
    color: #FFFFFF !important;
}
.fb-wrapper #login-box label{
    color: #FFF;
}
.white-bg-login{
    background: linear-gradient(135deg, #301853 0%, #6a45a3 50%, #e9e4ff 100%) !important;
}
.checkbox.pass span label a{
    color: #FFF !important;
}
.fb-wrapper {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.fb-wrapper #login-box{
    margin: 0 !important;
}

.fb-login-box {
    /*width: auto !important;*/
    position: relative;
}

.fb-wrapper .signup-box {
    width: unset !important;
}

/* LEFT SIDE */
.fb-wrapper .fb-left {
    width: 50%;
    background: url("https://elearning.iicfip.org/elearning-iicfip/assets/images/IICFIP-login-page.png");
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.fb-left-inner {
    max-width: 450px;
}

.fb-logo {
    width: 50px;
    height: 50px;
    background: #1877f2;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* TEXT */
.fb-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 20px;
}

.fb-content h1 span {
    color: #1877f2;
}

/* IMAGE STACK */
.fb-images {
    position: relative;
    margin-top: 30px;
}

.fb-images .img {
    border-radius: 12px;
}

.img-main {
    width: 250px;
}

.img-card {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 180px;
}

.img-circle {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 70px;
    border-radius: 50%;
}

/* RIGHT SIDE */
.fb-wrapper .fb-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGIN BOX */
.fb-login-box {
    width: 70%;
}

.fb-login-box h2 {
    margin-bottom: 20px;
}

/* FORM */
.fb-login-box form {
    display: flex;
    flex-direction: column;
}

.fb-login-box input {
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* BUTTONS */
.btn-login {
    background: #1877f2;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.btn-create {
    margin-top: 20px;
    padding: 12px;
    border: 1px solid #1877f2;
    background: transparent;
    border-radius: 30px;
    color: #1877f2;
    cursor: pointer;
}

/* LINKS */
.forgot {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

/* META TEXT */
.fb-meta {
    text-align: center;
    margin-top: 20px;
    color: #555;
}

.white-bg-login .col-md-4.col-md-offset-4.marg {
    display: none;
}

@media (max-width: 768px) {
    .fb-wrapper .white-bg-login .btn.btn-block{
        margin: 25px 0px 0px 0px !important;
    }
    .fb-wrapper {
        flex-direction: column;
    }

    .fb-wrapper .fb-left,
    .fb-wrapper .fb-right {
        width: 100%;
    }

    .fb-left {
        min-height: 250px;
        background-size: cover;
    }

    .fb-wrapper .fb-left, .fb-wrapper .fb-right{
        height: 100%;
    }

    .fb-login-box {
        width: 90%;
    }

    .fb-wrapper .fb-right {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); /* transparent dark overlay */
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    /* POPUP BOX */
    .fb-wrapper .fb-right .fb-login-box {
        width: 360px;
        background: rgba(255, 255, 255, 0.9); /* transparent white */
        backdrop-filter: blur(12px); /* glass effect */
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.25); /* shadow */
        animation: popupFade 0.3s ease;
    }

    .white-bg-login .fb-login-box h2,
    .checkbox.pass span label a,
    .fb-wrapper #login-box .header,
    .fb-wrapper .recover_pass_label span,
    .fb-wrapper .checkbox.pass span label a,
    .fb-wrapper #login-box label {
        color: #212121 !important;
    }

    .fb-wrapper .form-box .body, 
    .fb-wrapper .form-box .footer,
    .fb-wrapper #login-box .header
    {
        padding: 0 !important;

    }

    #login-box{
        width: unset !important;
    }

    .login-box-register{
        max-width: 100% !important;
    }

    .login-box-register .col-md-6 {
        padding-right: 0;
    }

    /* ANIMATION */
    @keyframes popupFade {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}