*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{
    background:#02050b;
    color:#fff;
    overflow-x:hidden;
}

body{

    animation:fadePage .25s ease;
}

@keyframes fadePage{

    from{
        opacity:.5;
    }

    to{
        opacity:1;
    }

}

/* ========================================
   MAIN CONTAINER
======================================== */

.login-container{

    width:85%;
    min-height:85vh;

    margin:auto;
    margin-top:2vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    background:#07090c;

    border-radius:24px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,.06);

    position:relative;
}

/* ========================================
   LEFT SIDE
======================================== */

.login-left{

    position:relative;

    background:
    url('../images/bg.png')
    center/cover no-repeat;

    min-height:920px;
}

.left-overlay{

    position:absolute;
    inset:0;

    background:
    rgba(0,0,0,.55);
}

.left-inner{

    position:relative;
    z-index:2;

    min-height:920px;

    padding:60px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.top-content{
    text-align:center;
}

.main-logo{

    width:250px;

    margin-bottom:30px;
}

.top-content h1{

    font-size:68px;
    line-height:1.1;
    font-weight:800;
}

.top-content h1 span{
    color:#ffb300;
}

.left-desc{

    margin-top:25px;

    font-size:24px;

    color:#d8d8d8;

    line-height:1.7;
}


/* MAIN TITLE */

.top-content h1{

    font-family:'Cinzel',serif;

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    background:
    linear-gradient(
        to bottom,
        #ffe9a8 0%,
        #ffcf5a 20%,
        #ffb52b 45%,
        #d88a12 70%,
        #fff1b8 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 0 15px rgba(255,179,0,.12);

    margin-bottom:18px;
}

/* SMALL TEXT */

.top-content .small-title{

    font-family:'Cinzel',serif;

    font-size:22px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#f6d47a;

    margin-bottom:8px;

    text-shadow:
    0 0 10px rgba(255,215,120,.15);
}

/* DESCRIPTION */

.left-desc{

    color:#f0f0f0;

    font-size:20px;

    line-height:1.6;

    letter-spacing:.5px;

    text-transform:uppercase;

    text-shadow:
    0 2px 10px rgba(0,0,0,.45);
}

/* ========================================
   FEATURES
======================================== */

.feature-section{

    display:flex;
    justify-content:center;
    gap:45px;

    margin-bottom:110px;
}

.feature-card{
    text-align:center;
}

.feature-icon{

    width:78px;
    height:78px;

    border-radius:50%;

    border:2px solid #ffb300;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;
    margin-bottom:20px;

    background:
    rgba(255,179,0,.03);

    box-shadow:
    0 0 20px rgba(255,179,0,.10);
}

.feature-icon i{

    color:#ffb300;
    font-size:28px;
}

.feature-card h3{

    color:#ffb300;

    font-size:21px;

    margin-bottom:12px;
}

.feature-card p{

    color:#d8d8d8;

    line-height:1.7;

    font-size:16px;
}

/* ========================================
   RIGHT SIDE
======================================== */

.login-right{

    position:relative;

    width:100%;
    min-width:0;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    padding:60px;
}

/* LANGUAGE */

.language-box{

    position:absolute;

    top:35px;
    right:35px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:18px 22px;

    border-radius:14px;

    background:#0a1018;

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:18px;
}

/* LOGIN BOX */

.login-box{

    width:100%;
    max-width:560px;
}

.login-box h2{

    font-size:35px;

    margin-bottom:12px;
}

.login-subtitle{

    color:#bcbcbc;

    font-size:22px;

    margin-bottom:45px;
}

.login-box label{

    display:block;

    margin-bottom:12px;

    font-size:19px;
    font-weight:500;
}

/* ========================================
   INPUTS
======================================== */

.input-box{

    position:relative;

    width:100%;

    margin-bottom:30px;
}

.input-box input{

    width:100%;
    height:72px;

    background:#0a1018;

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:15px;

    color:#fff;

    font-size:18px;

    padding-left:65px;
    padding-right:65px;

    outline:none;
}

.input-box input:focus{

    border-color:
    rgba(255,0,0,.4);
}

.input-box i{

    position:absolute;

    left:22px;
    top:50%;

    transform:translateY(-50%);

    color:#999;

    font-size:20px;
}

/* PASSWORD TOGGLE */

.toggle-password{

    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    width:24px;
    height:24px;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    z-index:5;

    color:#8f8f8f;
}

/* ========================================
   FORGOT PASSWORD
======================================== */

.forgot-password{

    text-align:right;

    color:#ff2d2d;

    margin-bottom:30px;

    cursor:pointer;

    font-size:17px;
}

/* ========================================
   LOGIN BUTTON
======================================== */

.login-btn{

    width:100%;
    height:72px;

    border:none;
    border-radius:15px;

    background:
    #9f0409;

    color:#fff;

    font-size:22px;
    font-weight:700;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    cursor:pointer;

    transition:.3s;
}

.login-btn:hover{

    transform:translateY(-3px);
}

#loginMessage{
    margin-top:20px;
}

/* ========================================
   OR DIVIDER
======================================== */

.or-divider{

    position:relative;

    text-align:center;

    margin:40px 0;
}

.or-divider::before,
.or-divider::after{

    content:'';

    position:absolute;

    top:50%;

    width:45%;
    height:1px;

    background:
    rgba(255,255,255,.08);
}

.or-divider::before{
    left:0;
}

.or-divider::after{
    right:0;
}

.or-divider span{

    color:#c7c7c7;

    font-size:18px;
}

/* ========================================
   SOCIAL BUTTONS
======================================== */

.social-btn{

    width:100%;
    height:72px;

    border-radius:15px;

    background:#0a1018;

    border:
    1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;

    margin-bottom:20px;

    font-size:21px;

    cursor:pointer;

    transition:.3s;
}

.social-btn:hover{
    background:#111927;
}

.social-btn img{
    width:30px;
}

/* ========================================
   SIGNUP
======================================== */

.signup-text{

    text-align:center;

    margin-top:40px;

    color:#cfcfcf;

    font-size:19px;
}

.signup-text span{

    color:#ff2d2d;

    font-weight:700;

    cursor:pointer;
}

/* ========================================
   BOTTOM BAR
======================================== */

.bottom-bar{

    width:100%;
    height:75px;

    background:#060b13;

    border-top:
    1px solid rgba(255,255,255,.05);

    display:flex;
    justify-content:space-around;
    align-items:center;
}

.bottom-item{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:17px;
}

.bottom-item i{
    font-size:22px;
}

.divider{

    width:1px;
    height:35px;

    background:
    rgba(255,255,255,.08);
}

.copyright{

    color:#d0d0d0;

    font-size:16px;
}

/* ========================================
   TABLET
======================================== */

@media(max-width:991px){

    .login-container{

        width:92%;

        grid-template-columns:1fr;

        min-height:auto;

        border-radius:20px;

        margin-top:20px;
        margin-bottom:20px;
    }

    .login-left{
        display:none;
    }

    .login-right{

        padding:
        95px 24px 25px;
    }

    .login-box{

        max-width:100%;
    }

    .login-box h2{

        font-size:24px;

        line-height:1.1;
    }

    .login-subtitle{

        font-size:16px;

        margin-bottom:35px;
    }

    .input-box input{

        height:64px;

        font-size:16px;

        padding-left:58px;
        padding-right:58px;
    }

    .input-box i{

        left:18px;

        font-size:18px;
    }

    .toggle-password{

        right:18px;

        width:22px;
        height:22px;

        font-size:16px;
    }

    .login-btn{

        height:62px;

        font-size:18px;

        margin-bottom:10px;
    }

    .social-btn{

        height:62px;

        font-size:16px;
    }

    .language-box{

        top:20px;
        right:20px;

        font-size:15px;

        padding:14px 18px;
    }

    /* FOOTER */

    .bottom-bar{

        position:relative;

        height:auto;

        margin-top:12px;

        padding:18px 20px;

        flex-direction:column;

        gap:14px;
    }

    .divider{

        width:75%;
        height:1px;
    }

    .bottom-item{

        justify-content:center;

        font-size:15px;
    }

    .bottom-item i{

        font-size:18px;
    }

    .copyright{

        text-align:center;

        font-size:14px;

        line-height:1.6;
    }

}

/* ========================================
   MOBILE
======================================== */

@media(max-width:480px){

    .login-container{
        width:95%;
    }

    .login-right{

        padding:
        85px 16px 20px;
    }

    .login-box h2{

        font-size:24px;
    }

    .input-box{

        margin-bottom:22px;
    }

    .input-box input{

        height:58px;

        font-size:15px;

        padding-left:52px;
        padding-right:55px;
    }

    .toggle-password{

        right:16px;
    }

    .login-btn{

        height:58px;

        font-size:16px;
    }

    .social-btn{

        height:58px;

        font-size:15px;

        gap:12px;
    }

    .social-btn img{
        width:24px;
    }

    .signup-text{

        font-size:15px;
    }

}


/* RIGHT SIDE TITLE */

.login-box h2{

    font-family:'Cinzel',serif;

    font-size:34px;

    font-weight:800;

    line-height:1.1;

    letter-spacing:1px;

    background:
    linear-gradient(
        to bottom,
        #fff6d5 0%,
        #ffd86e 25%,
        #ffbc3b 50%,
        #c67a0a 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 18px rgba(255,179,0,.12);

    margin-bottom:12px;
}

/* SUBTITLE */

.login-subtitle{

    color:#d7c089;

    font-size:19px;

    line-height:1.7;

    letter-spacing:.5px;

    text-shadow:
    0 0 10px rgba(255,179,0,.08);
}

/* LABELS */

.login-box label{

    color:#f5d27a;

    font-size:18px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:12px;
}

/* INPUT TEXT */

.input-box input{

    color:#fff7df;

    background:
    linear-gradient(
        to bottom,
        #0c121b,
        #080d15
    );

    border:
    1px solid rgba(255,196,70,.12);
}

.input-box input::placeholder{

    color:#a79c83;
}

/* ICONS */

.input-box i,
.toggle-password{

    color:#cba041;
}

/* FORGOT PASSWORD */

.forgot-password{

    color:#ffb347;

    font-weight:600;

    letter-spacing:.5px;

    transition:.3s;
}

.forgot-password:hover{

    color:#ffd36d;
}

/* SIGNUP */

.signup-text{

    color:#d5c7a1;
}

.signup-text span{

    color:#ffb52b;

    text-shadow:
    0 0 12px rgba(255,181,43,.15);
}

/* SOCIAL BUTTONS */

.social-btn{

    color:#f0e4c4;

    border:
    1px solid rgba(255,196,70,.10);

    background:
    linear-gradient(
        to bottom,
        #0b1018,
        #080d15
    );
}

.social-btn:hover{

    border:
    1px solid rgba(255,196,70,.22);

    background:
    linear-gradient(
        to bottom,
        #121926,
        #0c121b
    );
}


/* LOGIN BUTTON */

.login-btn{

    width:100%;
    height:72px;

    border:none;
    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #ffcf5a 0%,
        #ffb52b 25%,
        #d88408 55%,
        #8f1d00 100%
    );

    color:#fff;

    font-size:21px;
    font-weight:800;

    letter-spacing:1px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(255,140,0,.18),
    inset 0 1px 0 rgba(255,255,255,.25);

    transition:.35s ease;
}

/* SHINE EFFECT */

.login-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.7s;
}

.login-btn:hover::before{

    left:120%;
}

/* HOVER */

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 40px rgba(255,140,0,.28),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* ACTIVE */

.login-btn:active{

    transform:scale(.98);
}

/* ICON */

.login-btn i{

    font-size:18px;

    color:#fff4d0;
}


/* LOADER */

.page-loader{

    position:fixed;
    inset:0;

    background:#05070d;

    display:none;
    justify-content:center;
    align-items:center;

    z-index:999999;
}

.loader-box{
    text-align:center;
}

.loader-spinner{

    width:70px;
    height:70px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.08);

    border-top:5px solid #ff0000;

    animation:spin .8s linear infinite;

    margin:auto;
    margin-bottom:25px;
}

.loader-box h3{

    color:#fff;

    font-size:22px;

    letter-spacing:1px;
}

@keyframes spin{

    to{
        transform:rotate(360deg);
    }

}