/* =========================================
   GLOBAL RESET
   ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Roboto',sans-serif;
}

html,
body{
    min-height:100%;
}

body{
    background:
        radial-gradient(circle at top left, rgba(201,161,74,.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(201,161,74,.08), transparent 30%),
        #f4f5f7;

    overflow-x:hidden;
}


/* =========================================
   PAGE WRAPPER
   ========================================= */

.login-page-wrapper{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px 20px;

    position:relative;
}


/* =========================================
   BACKGROUND DECORATION
   ========================================= */

.login-page-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(201,161,74,.10);

    filter:blur(20px);

    top:-120px;

    left:-100px;

    pointer-events:none;
}


.login-page-wrapper::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(0,0,0,.05);

    filter:blur(25px);

    bottom:-120px;

    right:-100px;

    pointer-events:none;
}


/* =========================================
   MAIN LOGIN BOX
   ========================================= */

.login-container{

    width:100%;

    max-width:1050px;

    min-height:560px;

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    z-index:2;

    box-shadow:
        0 25px 70px rgba(0,0,0,.12),
        0 5px 20px rgba(0,0,0,.06);

    border:1px solid rgba(0,0,0,.04);
}


/* =========================================
   LEFT SIDE
   PREMIUM BRAND SECTION
   ========================================= */

.login-left{

    padding:60px 55px;

    position:relative;

    overflow:hidden;

    color:#ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(16,16,16,.98),
            rgba(35,35,35,.96)
        );
}


/* =========================================
   LEFT DECORATIVE CIRCLE
   ========================================= */

.login-left::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    border:1px solid rgba(201,161,74,.25);

    top:-150px;

    right:-150px;
}


/* =========================================
   LEFT SECOND CIRCLE
   ========================================= */

.login-left::after{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    border:1px solid rgba(201,161,74,.18);

    bottom:-120px;

    left:-100px;
}


/* =========================================
   KEEP CONTENT ABOVE DECORATION
   ========================================= */

.login-left > *{

    position:relative;

    z-index:2;
}


/* =========================================
   LEFT HEADING
   ========================================= */

.login-left h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:18px;

    color:#ffffff;

    letter-spacing:.2px;

    line-height:1.25;
}


/* =========================================
   GOLD LINE
   ========================================= */

.login-left h2::after{

    content:"";

    display:block;

    width:55px;

    height:3px;

    background:#c9a14a;

    margin-top:14px;

    border-radius:10px;
}


/* =========================================
   LEFT DESCRIPTION
   ========================================= */

.login-left p{

    color:rgba(255,255,255,.70);

    font-size:15px;

    line-height:1.8;

    max-width:460px;
}


/* =========================================
   FEATURES
   ========================================= */

.feature{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-top:24px;

    padding:15px;

    border-radius:12px;

    transition:all .3s ease;
}


/* =========================================
   FEATURE HOVER
   ========================================= */

.feature:hover{

    background:rgba(255,255,255,.06);

    transform:translateX(5px);
}


/* =========================================
   FEATURE ICON
   ========================================= */

.feature i{

    width:42px;

    height:42px;

    min-width:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(201,161,74,.13);

    border:1px solid rgba(201,161,74,.35);

    color:#d8b35c;

    border-radius:12px;

    font-size:17px;
}


/* =========================================
   FEATURE TEXT
   ========================================= */

.feature div{

    color:rgba(255,255,255,.68);

    font-size:14px;

    line-height:1.6;
}


/* =========================================
   FEATURE TITLE
   ========================================= */

.feature strong{

    color:#ffffff;

    font-size:15px;

    font-weight:600;
}


/* =========================================
   RIGHT SIDE LOGIN
   ========================================= */

.login-right{

    padding:60px 55px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    position:relative;

    background:#ffffff;
}


/* =========================================
   LOGIN LOGO
   ========================================= */

.login-logo{

    text-align:center;

    margin-bottom:35px;
}


/* =========================================
   LOGO IMAGE
   ========================================= */

.login-logo img{

    width:82px;

    height:82px;

    object-fit:cover;

    border-radius:50%;

    padding:4px;

    background:#ffffff;

    border:2px solid #c9a14a;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10);

    margin-bottom:17px;

    transition:all .3s ease;
}


.login-logo img:hover{

    transform:scale(1.05) rotate(3deg);
}


/* =========================================
   LOGIN HEADING
   ========================================= */

.login-logo h3{

    font-size:30px;

    font-weight:700;

    color:#1d1d1d;

    margin-bottom:8px;
}


/* =========================================
   LOGIN SUBTITLE
   ========================================= */

.login-logo::after{

    content:"Welcome back! Please continue to your account";

    display:block;

    font-size:14px;

    color:#888;

    margin-top:5px;
}


/* =========================================
   GOOGLE LOGIN BUTTON
   ========================================= */

.google-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:13px;

    width:100%;

    min-height:54px;

    margin-top:15px;

    padding:14px 18px;

    background:#ffffff;

    border:1px solid #e2e2e2;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    color:#333333;

    text-decoration:none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;

    box-shadow:
        0 4px 15px rgba(0,0,0,.04);
}


/* =========================================
   GOOGLE ICON
   ========================================= */

.google-btn img{

    width:22px;

    height:22px;

    object-fit:contain;
}


/* =========================================
   GOOGLE BUTTON HOVER
   ========================================= */

.google-btn:hover{

    background:#ffffff;

    border-color:#c9a14a;

    color:#1d1d1d;

    transform:translateY(-2px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.10);
}


/* =========================================
   BUTTON ACTIVE
   ========================================= */

.google-btn:active{

    transform:translateY(0);
}


/* =========================================
   GOOGLE BUTTON AFTER
   ========================================= */

.google-btn::after{

    content:"";
}


/* =========================================
   GOOGLE LOADER
   ========================================= */

.google-loader{

    position:fixed;

    inset:0;

    background:
        rgba(15,15,15,.92);

    backdrop-filter:blur(8px);

    display:none;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    z-index:9999;
}


/* =========================================
   SPINNER
   ========================================= */

.spinner{

    width:52px;

    height:52px;

    border:4px solid rgba(255,255,255,.15);

    border-top:4px solid #c9a14a;

    border-radius:50%;

    animation:spin .8s linear infinite;
}


@keyframes spin{

    to{

        transform:rotate(360deg);
    }
}


/* =========================================
   LOADER TEXT
   ========================================= */

.google-loader p{

    margin-top:18px;

    font-size:15px;

    font-weight:500;

    color:#ffffff;

    letter-spacing:.2px;
}


/* =========================================
   LOGIN TOAST
   ========================================= */

.login-toast{

    position:fixed;

    bottom:25px;

    right:25px;

    background:#1d1d1d;

    color:#ffffff;

    padding:15px 22px;

    border-radius:12px;

    font-size:14px;

    font-weight:500;

    display:none;

    z-index:9999;

    border-left:4px solid #c9a14a;

    box-shadow:
        0 15px 35px rgba(0,0,0,.20);

    animation:toastSlide .4s ease;
}


/* =========================================
   TOAST ANIMATION
   ========================================= */

@keyframes toastSlide{

    from{

        opacity:0;

        transform:translateX(50px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}


/* =========================================
   TABLET / MEDIUM SCREEN
   ========================================= */

@media (max-width:991px){

    .login-container{

        max-width:750px;
    }


    .login-left{

        padding:45px 35px;
    }


    .login-right{

        padding:45px 35px;
    }


    .login-left h2{

        font-size:28px;
    }
}


/* =========================================
   MOBILE DESIGN
   ========================================= */

@media (max-width:767px){

    /* =====================================
       BODY
       ===================================== */

    html,
    body{

        width:100%;

        min-height:100%;

        height:auto;
    }


    body{

        background:#f6f6f6;

        overflow-x:hidden;
    }


    /* =====================================
       PAGE WRAPPER
       IMPORTANT: REMOVE FULL SCREEN HEIGHT
       ===================================== */

    .login-page-wrapper{

        width:100%;

        min-height:auto !important;

        height:auto !important;

        display:block;

        padding:0;

        position:relative;
    }


    /* Remove Desktop Background Decorations */

    .login-page-wrapper::before,

    .login-page-wrapper::after{

        display:none;
    }


    /* =====================================
       MAIN CONTAINER
       ===================================== */

    .login-container{

        width:100%;

        max-width:100%;

        min-height:auto !important;

        height:auto !important;

        border-radius:0;

        box-shadow:none;

        border:none;

        background:#f6f6f6;

        overflow:visible;
    }


    /* =====================================
       HIDE LEFT SIDE
       ===================================== */

    .login-left{

        display:none !important;
    }


    /* =====================================
       MOBILE LOGIN SECTION
       ===================================== */

    .login-right{

        width:100%;

        min-height:auto !important;

        height:auto !important;

        padding:0 22px 30px !important;

        display:flex;

        flex-direction:column;

        justify-content:flex-start;

        background:#f6f6f6;

        position:relative;

        overflow:hidden;
    }


    /* =====================================
       MOBILE TOP BRAND SECTION
       ===================================== */

    .login-logo{

        width:calc(100% + 44px);

        margin:

            0

            -22px

            28px;

        padding:

            40px 22px 32px;

        text-align:center;

        position:relative;

        background:
            linear-gradient(
                135deg,
                #101010,
                #26231d
            );

        overflow:hidden;
    }


    /* =====================================
       GOLD DECORATION TOP
       ===================================== */

    .login-logo::before{

        content:"";

        position:absolute;

        width:180px;

        height:180px;

        border-radius:50%;

        border:1px solid rgba(201,161,74,.25);

        top:-100px;

        right:-70px;

        pointer-events:none;
    }


    /* =====================================
       MOBILE LOGO
       ===================================== */

    .login-logo img{

        width:76px;

        height:76px;

        object-fit:cover;

        border-radius:50%;

        padding:4px;

        background:#ffffff;

        border:2px solid #c9a14a;

        box-shadow:
            0 10px 28px rgba(0,0,0,.30);

        margin-bottom:12px;

        position:relative;

        z-index:2;
    }


    /* =====================================
       MOBILE HEADING
       ===================================== */

    .login-logo h3{

        font-size:26px;

        color:#ffffff;

        font-weight:700;

        margin:0 0 7px;

        position:relative;

        z-index:2;
    }


    /* =====================================
       MOBILE SUBTITLE
       ===================================== */

    .login-logo::after{

        content:"Welcome back! Sign in to continue";

        display:block;

        color:rgba(255,255,255,.68);

        font-size:13px;

        margin-top:0;

        position:relative;

        z-index:2;
    }


    /* =====================================
       GOOGLE LOGIN BUTTON
       ===================================== */

    .google-btn{

        width:100%;

        margin-top:0;

        min-height:56px;

        padding:13px 18px;

        border-radius:14px;

        background:#ffffff;

        border:1px solid #e4e4e4;

        font-size:14px;

        font-weight:600;

        color:#222;

        box-shadow:
            0 8px 25px rgba(0,0,0,.10);

        transition:
            border-color .25s ease,
            box-shadow .25s ease;
    }


    /* =====================================
       GOOGLE BUTTON HOVER
       ===================================== */

    .google-btn:hover{

        transform:none;

        background:#ffffff;

        border-color:#c9a14a;

        box-shadow:
            0 10px 28px rgba(0,0,0,.12);
    }


    /* =====================================
       GOOGLE BUTTON ACTIVE
       ===================================== */

    .google-btn:active{

        transform:scale(.99);
    }


    /* =====================================
       GOOGLE ICON
       ===================================== */

    .google-btn img{

        width:21px;

        height:21px;
    }


    /* =====================================
       MOBILE SECURITY TEXT
       ===================================== */

    .login-right::after{

        content:"Secure • Fast • Trusted";

        display:block;

        width:100%;

        text-align:center;

        margin-top:20px;

        color:#888;

        font-size:11px;

        letter-spacing:.5px;
    }


    /* =====================================
       TOAST MOBILE
       ===================================== */

    .login-toast{

        bottom:20px;

        left:15px;

        right:15px;

        text-align:center;

        padding:14px 15px;

        border-radius:12px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width:400px){

    .login-right{

        padding-left:18px !important;

        padding-right:18px !important;

        padding-bottom:25px !important;
    }


    .login-logo{

        width:calc(100% + 36px);

        margin-left:-18px;

        margin-right:-18px;

        padding:

            35px 18px 28px;
    }


    .login-logo img{

        width:70px;

        height:70px;
    }


    .login-logo h3{

        font-size:24px;
    }


    .login-logo::after{

        font-size:12px;
    }


    .google-btn{

        min-height:54px;

        font-size:13px;
    }
}


/* =========================================
   SMALL HEIGHT MOBILE
   ========================================= */

@media (max-height:650px) and (max-width:767px){

    .login-logo{

        padding-top:28px;

        padding-bottom:24px;

        margin-bottom:22px;
    }


    .login-logo img{

        width:65px;

        height:65px;

        margin-bottom:8px;
    }


    .login-logo h3{

        font-size:23px;
    }


    .login-right{

        padding-bottom:20px !important;
    }
}


/* =========================================
   VERY SMALL HEIGHT MOBILE
   ========================================= */

@media (max-height:500px) and (max-width:767px){

    .login-logo{

        padding-top:20px;

        padding-bottom:18px;

        margin-bottom:18px;
    }


    .login-logo img{

        width:55px;

        height:55px;

        margin-bottom:5px;
    }


    .login-logo h3{

        font-size:20px;
    }


    .login-logo::after{

        font-size:11px;
    }


    .google-btn{

        min-height:50px;
    }
}