body.logged-out{
    overflow:hidden;
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    background:#000;
}

/* =========================================================
OVERLAY
========================================================= */
#hitech-popup-overlay{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top left, rgba(200,165,77,0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(200,165,77,0.08), transparent 30%),
    #000;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* =========================================================
CONTAINER
========================================================= */
.hitech-popup-container{
    width:95%;
    max-width:1450px;
    height:92vh;
    background:#050505;
    border:1px solid rgba(200,165,77,0.3);
    border-radius:32px;
    overflow:hidden;
    display:flex;
    position:relative;
    box-shadow:
    0 0 60px rgba(200,165,77,0.12),
    inset 0 0 50px rgba(255,255,255,0.02);
}

/* =========================================================
LEFT
========================================================= */
.hitech-left{
    width:50%;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(135deg,#000,#090909,#111);
    overflow:hidden;
}

.hitech-left img{
    position:relative;
    z-index:2;
    width:80%;
    max-width:520px;
    object-fit:contain;
    filter:
    drop-shadow(0 0 25px rgba(200,165,77,0.35))
    drop-shadow(0 0 60px rgba(200,165,77,0.12));
}

/* =========================================================
RIGHT
========================================================= */
.hitech-right{
    width:50%;
    padding:70px;
    color:#fff;
    overflow-y:auto;
    position:relative;
}

/* =========================================================
HEADINGS
========================================================= */
.hitech-tab-content h2{
    font-size:42px;
    margin:0 0 35px;
    font-weight:700;
    color:#c8a54d;
}

/* =========================================================
TABS
========================================================= */
.hitech-tabs{
    display:flex;
    gap:15px;
    margin-bottom:45px;
}

.hitech-tabs button{
    flex:1;
    height:60px;
    border:none;
    border-radius:16px;
    background:#111;
    color:#c8a54d;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
}

.hitech-tabs button.active{
    background:linear-gradient(135deg,#c8a54d,#f0d57a);
    color:#000;
}

/* =========================================================
TAB CONTENT
========================================================= */
.hitech-tab-content{
    display:none;
}

.hitech-tab-content.active{
    display:block;
}

/* =========================================================
FORM
========================================================= */
.hitech-tab-content form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* =========================================================
INPUTS + TEXTAREA
========================================================= */
.hitech-tab-content input,
.hitech-tab-content textarea{
    width:100%;
    background:#0c0c0c !important;
    border:1px solid rgba(200,165,77,0.12);
    border-radius:16px;
    color:#c8a54d !important;
    -webkit-text-fill-color:#c8a54d !important;
    font-size:16px;
    font-weight:500;
    transition:all .3s ease;
    box-sizing:border-box;
    caret-color:#c8a54d;
    opacity:1 !important;
    font-family:'Poppins',sans-serif;
}

.hitech-tab-content input{
    height:62px;
    padding:0 22px;
}

.hitech-tab-content textarea{
    min-height:120px;
    padding:18px 22px;
    resize:vertical;
}

/* PLACEHOLDER */
.hitech-tab-content input::placeholder,
.hitech-tab-content textarea::placeholder{
    color:rgba(200,165,77,0.45) !important;
    opacity:1;
}

/* FOCUS */
.hitech-tab-content input:focus,
.hitech-tab-content textarea:focus{
    outline:none;
    border-color:#c8a54d;
    color:#c8a54d !important;
    -webkit-text-fill-color:#c8a54d !important;
    background:#101010 !important;
    box-shadow:
    0 0 20px rgba(200,165,77,0.12),
    inset 0 0 20px rgba(200,165,77,0.03);
}

/* AUTOFILL */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
    -webkit-text-fill-color:#c8a54d !important;
    caret-color:#c8a54d !important;
    -webkit-box-shadow:0 0 0px 1000px #0c0c0c inset !important;
    transition:background-color 9999s ease-in-out 0s;
}

/* =========================================================
BUTTON
========================================================= */
.hitech-tab-content button{
    width:100%;
    height:62px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#c8a54d,#f3da84);
    color:#000;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:all .35s ease;
    margin-top:10px;
}

.hitech-tab-content button:hover{
    transform:translateY(-3px);
}

/* =========================================================
TEXT
========================================================= */
.switch-text{
    margin-top:28px;
    color:#999;
    font-size:15px;
}

.switch-tab{
    color:#c8a54d;
    cursor:pointer;
    font-weight:700;
}

/* =========================================================
TERMS
========================================================= */
.terms-box{
    color:#999;
    font-size:14px;
    line-height:1.7;
}

.terms-box input{
    width:auto;
    height:auto;
    margin-right:10px;
    accent-color:#c8a54d;
}

.terms-box a{
    color:#c8a54d;
    text-decoration:none;
}

/* =========================================================
MESSAGE
========================================================= */
#hitech-message{
    margin-bottom:22px;
    color:#f0d57a;
    font-weight:600;
    font-size:14px;
}

/* =========================================================
MOBILE
========================================================= */
@media(max-width:980px){

    .hitech-popup-container{
        flex-direction:column;
        width:100%;
        height:100%;
        border-radius:0;
    }

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

    .hitech-left{
        min-height:260px;
        padding:20px;
    }

    .hitech-left img{
        width:75%;
        max-width:320px;
    }

    .hitech-right{
        padding:35px 25px;
    }

    .hitech-tab-content h2{
        font-size:30px;
    }
}