*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'League Spartan', sans-serif;

    background:
    linear-gradient(
        135deg,
        #140000,
        #0d0d0d
    );

    min-height:100vh;

    overflow-x:hidden;
}

/* MAIN */

.login-container{
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

/* WRAPPER */

.login-wrapper{
    width:100%;
    max-width:1180px;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);
}

/* LEFT SIDE */

.left-side{
    background:
    linear-gradient(
        180deg,
        #190000,
        #0b0b0b
    );

    padding:70px;

    display:flex;
    align-items:center;
}

.brand-content{
    width:100%;
}

/* LOGO */

.logo-box{
    width:78px;
    height:78px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #d10000,
        #7a0000
    );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:35px;

    box-shadow:
    0 15px 40px rgba(255,0,0,0.25);
}

.logo-box i{
    color:#fff;
    font-size:30px;
}

/* TITLE */

.brand-title{
    font-size:48px;

    font-weight:800;

    line-height:1.05;

    letter-spacing:-2px;

    color:#fff;

    margin-bottom:20px;
}

.brand-title span{
    color:#ff3b3b;
}

/* TEXT */

.brand-text{
    color:#cfcfcf;

    font-size:18px;

    line-height:1.8;

    max-width:420px;

    margin-bottom:45px;
}

/* FEATURES */

.feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:14px;

    background:
    rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.06);

    padding:18px 22px;

    border-radius:18px;

    color:#f1f1f1;

    font-size:15px;

    font-weight:500;
}

.feature-item i{
    color:#ff4d4d;
}

/* RIGHT SIDE */

.right-side{
    padding:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fafafa;
}

/* FORM */

.form-box{
    width:100%;
    max-width:430px;
}

/* BADGE */

.admin-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff0f0;

    color:#b30000;

    border:1px solid #ffd4d4;

    padding:10px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:28px;
}

/* TITLES */

.form-title{
    font-size:38px;

    font-weight:800;

    letter-spacing:-1px;

    color:#111;

    margin-bottom:10px;
}

.form-subtitle{
    color:#666;

    font-size:17px;

    line-height:1.7;

    margin-bottom:35px;
}

/* ERROR */

.error-box{
    background:#ffe8e8;

    border:1px solid #ffcaca;

    color:#b30000;

    padding:16px 18px;

    border-radius:16px;

    margin-bottom:25px;

    font-weight:600;
}

/* INPUTS */

.input-group{
    margin-bottom:24px;
}

.input-group label{
    display:block;

    margin-bottom:12px;

    font-size:15px;

    font-weight:700;

    color:#111;
}

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;

    left:20px;
    top:22px;

    color:#999;
}

.input-box input{
    width:100%;

    height:64px;

    border:1px solid #ddd;

    border-radius:18px;

    background:#fff;

    padding-left:55px;
    padding-right:20px;

    font-family:'League Spartan', sans-serif;

    font-size:16px;

    font-weight:500;

    transition:0.3s;
}

.input-box input:focus{
    outline:none;

    border-color:#c40000;

    box-shadow:
    0 0 0 4px rgba(196,0,0,0.08);
}

/* BUTTON */

.login-btn{
    width:100%;

    height:64px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #c40000,
        #7a0000
    );

    color:#fff;

    font-family:'League Spartan', sans-serif;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;

    margin-top:10px;

    box-shadow:
    0 18px 40px rgba(196,0,0,0.2);
}

.login-btn:hover{
    transform:translateY(-2px);
}

.login-btn i{
    margin-right:10px;
}

/* MOBILE */

@media(max-width:950px){

    .login-wrapper{
        grid-template-columns:1fr;
    }

    .left-side,
    .right-side{
        padding:45px 30px;
    }

    .brand-title{
        font-size:40px;
    }

    .form-title{
        font-size:32px;
    }

}