*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Rajdhani',sans-serif;
    background:#02050b;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    color:#fff;
}

/* PRELOADER */

#preloader{
    position:fixed;
    inset:0;
    background:#02050b;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:opacity .5s ease;
}

.loader{
    width:90px;
    height:90px;
    border-radius:50%;
    border:5px solid rgba(255,255,255,.08);
    border-top:5px solid #ff2d2d;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* MAIN */

.main-container{
    width:100%;
    max-width:1700px;
    height:94vh;
    border-radius:25px;
    overflow:hidden;
    display:flex;
    background:#05080f;
}

/* LEFT */

.left-side{
    width:52%;
    position:relative;
    padding:50px;
    overflow:hidden;
}

.left-side::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.55),
        rgba(0,0,0,.88)
    ),
    url('../images/arena-bg.jpg');

    background-size:cover;
    background-position:center;
}

.left-content{
    position:relative;
    z-index:5;
}

.logo{
    text-align:center;
}

.logo img{
    width:220px;
}

.logo h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:85px;
    letter-spacing:4px;
    margin-top:18px;

    background:
    linear-gradient(
        90deg,
        #2f8fff 0%,
        #ffffff 50%,
        #ff3d3d 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo p{
    color:#fff;
    margin-top:12px;
    letter-spacing:5px;
    font-size:18px;
    font-weight:700;
}

/* HERO */

.hero{
    text-align:center;
    margin-top:50px;
}

.hero small{
    font-size:28px;
    letter-spacing:8px;
    font-weight:700;
}

.hero h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:120px;
    line-height:.88;
    margin-top:20px;
    letter-spacing:5px;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #2f8fff 35%,
        #ffffff 50%,
        #ff3d3d 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    margin-top:25px;
    font-size:24px;
    line-height:1.8;
}

/* FEATURES */

.features{
    margin-top:70px;
    display:flex;
    gap:20px;
}

.feature{
    width:100%;
    text-align:center;
}

.icon{
    width:82px;
    height:82px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;

    background:
    linear-gradient(
        135deg,
        rgba(0,120,255,.18),
        rgba(255,0,0,.15)
    );

    font-size:30px;
}

.feature h3{
    margin-top:18px;
    font-size:28px;
    font-family:'Bebas Neue',sans-serif;
}

.feature p{
    margin-top:12px;
    font-size:18px;
}

/* RIGHT */

/* =========================================================
RIGHT SIDE
========================================================= */

.right-side{
    width:48%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px;
    overflow:hidden;
}

/*
BACKGROUND
*/

.right-side::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.82),
        rgba(0,0,0,.92)
    ),
    radial-gradient(
        circle at top,
        rgba(0,120,255,.10),
        transparent 35%
    ),
    radial-gradient(
        circle at bottom,
        rgba(255,0,0,.08),
        transparent 35%
    );

    z-index:0;
}

/*
TEXTURE
*/

.right-side::after{
    content:'';
    position:absolute;
    inset:0;

    background-image:
    url('https://www.transparenttextures.com/patterns/carbon-fibre.png');

    opacity:.18;

    z-index:0;
}

/*
FORM CONTAINER
*/

.form-area{
    position:relative;
    z-index:2;

    width:100%;
    max-width:650px;
}

/*
LANGUAGE BUTTON
*/

.language-box{
    position:absolute;
    top:35px;
    right:35px;
    z-index:5;
}

.language-btn{

    height:64px;

    padding:0 24px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.03);

    color:#fff;

    display:flex;
    align-items:center;
    gap:14px;

    font-size:20px;

    font-family:'Rajdhani',sans-serif;

    cursor:pointer;

    backdrop-filter:blur(12px);

    transition:.3s;
}

.language-btn:hover{

    border-color:
    rgba(255,255,255,.18);

    background:
    rgba(255,255,255,.05);
}

/*
TITLE
*/

.form-area h2{

    font-family:'Poppins',sans-serif;

    font-size:68px;

    font-weight:700;

    color:#fff;

    margin-bottom:12px;

    letter-spacing:-2px;
}

.subtitle{

    color:#d6d6d6;

    margin-bottom:60px;

    font-size:24px;

    line-height:1.5;
}

/*
INPUT GROUP
*/

.input-group{
    margin-bottom:35px;
}

.input-group label{

    display:block;

    margin-bottom:18px;

    font-size:26px;

    font-weight:600;

    color:#fff;
}

/*
INPUT BOX
*/

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;
    left:24px;
    top:50%;
    transform:translateY(-50%);
    color:#cfcfcf;
    font-size:24px;
}

.toggle{
    left:auto !important;
    right:24px;
    cursor:pointer;
}

/*
INPUTS
*/

.input-box input{

    width:100%;

    height:82px;

    background:
    rgba(255,255,255,.02);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:0 75px;

    color:#fff;

    font-size:23px;

    font-family:'Rajdhani',sans-serif;

    outline:none;

    transition:.3s;

    backdrop-filter:blur(10px);
}

.input-box input:focus{

    border-color:
    rgba(255,255,255,.20);

    box-shadow:
    0 0 20px rgba(255,255,255,.04);
}

/*
FORGOT PASSWORD
*/

.forgot{

    text-align:right;

    margin-top:18px;
}

.forgot a{

    color:#ff2e2e;

    text-decoration:none;

    font-size:22px;

    font-weight:600;
}

/*
LOGIN BUTTON
*/

.login-btn{

    width:100%;

    height:84px;

    border:none;

    border-radius:14px;

    margin-top:40px;

    background:
    linear-gradient(
        180deg,
        #ff0000 0%,
        #c40000 100%
    );

    color:#fff;

    font-size:34px;

    font-weight:700;

    font-family:'Poppins',sans-serif;

    cursor:pointer;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(255,0,0,.20);
}

.login-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 40px rgba(255,0,0,.30);
}

/*
DIVIDER
*/

.divider{

    margin:40px 0;

    display:flex;
    align-items:center;
    gap:20px;
}

.divider::before,
.divider::after{

    content:'';

    flex:1;

    height:1px;

    background:
    rgba(255,255,255,.08);
}

.divider span{

    color:#d6d6d6;

    font-size:24px;
}

/*
SOCIAL BUTTON
*/

.social-btn{

    width:100%;

    height:76px;

    border-radius:14px;

    border:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.02);

    display:flex;
    align-items:center;
    justify-content:center;

    gap:18px;

    color:#fff;

    text-decoration:none;

    font-size:24px;

    margin-bottom:18px;

    transition:.3s;
}

.social-btn:hover{

    background:
    rgba(255,255,255,.05);

    transform:translateY(-2px);
}

/*
SIGNUP
*/

.signup{

    text-align:center;

    margin-top:45px;

    color:#d4d4d4;

    font-size:24px;
}

.signup a{

    color:#ff1c1c;

    text-decoration:none;

    font-weight:700;
}

/*
FOOTER
*/

.footer{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    height:90px;

    border-top:
    1px solid rgba(255,255,255,.06);

    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;

    background:
    rgba(0,0,0,.35);

    backdrop-filter:blur(10px);

    color:#d4d4d4;

    font-size:20px;
}

/* MOBILE */

@media(max-width:1100px){

    body{
        overflow-y:auto;
        padding:0;
    }

    .main-container{
        flex-direction:column;
        width:100%;
        height:auto;
        min-height:100vh;
        border-radius:0;
    }

    .left-side{
        display:none;
    }

    .right-side{
        width:100%;
        min-height:100vh;
        padding:35px 20px;
    }

    .form-area{
        background:#0b1018;
        padding:30px;
        border-radius:20px;
    }

    .hero h2{
        font-size:70px;
    }
}