*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#050507;
    color:white;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 52px;
    background:#050507;
    border-bottom:1px solid rgba(155,77,255,.28);
    direction:ltr;
}

.nav-logo{
    width:150px;
    height:90px;
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav-logo img{
    height:78px;
    width:auto;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:46px;
    flex:1;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    letter-spacing:.7px;
    position:relative;
}

nav a:hover{
    color:#b76cff;
}

.nav-join-btn{
    width:170px;
    padding:12px 0;
    border:1px solid #9b4dff;
    border-radius:6px;
    color:#d9b8ff;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    font-weight:800;
}

.nav-join-btn:hover{
    background:#9b4dff;
    color:white;
}

/* HERO */

.apply-hero{
    min-height:420px;
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.78)),
        url("https://look.jmgbb.com/images/_TIlN58t3R.png");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    max-width:900px;
    padding:40px 20px;
}

.apply-logo{
    width:260px;
    margin-bottom:15px;
}

.hero-overlay h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero-overlay p{
    color:#bdbdbd;
    font-size:18px;
}

/* FORM */

.form-wrapper{
    width:90%;
    max-width:1400px;
    margin:-70px auto 60px;
    position:relative;
    z-index:5;
}

.apply-form{
    background:rgba(7,7,12,.94);
    border:1px solid rgba(155,77,255,.45);
    border-radius:18px;
    padding:45px;
    backdrop-filter:blur(15px);
    box-shadow:
        0 0 30px rgba(155,77,255,.18),
        inset 0 0 20px rgba(155,77,255,.05);
}

.apply-form h2{
    text-align:center;
    margin:35px 0 25px;
    color:white;
    font-size:28px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.field{
    display:flex;
    flex-direction:column;
}

.field.full{
    width:100%;
    margin-bottom:20px;
}

.field label{
    margin-bottom:10px;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.field input,
.field select,
.field textarea{
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(155,77,255,.4);
    border-radius:10px;
    padding:14px;
    color:white;
    outline:none;
    transition:.3s;
    font-size:14px;
}

.field textarea{
    min-height:120px;
    resize:vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    border-color:#9b4dff;
    box-shadow:0 0 15px rgba(155,77,255,.35);
}

.field option{
    background:#111;
    color:white;
}

.submit-btn{
    width:100%;
    margin-top:30px;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#9b4dff;
    color:white;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 25px rgba(155,77,255,.6);
}

#formMessage{
    margin-top:20px;
    text-align:center;
    font-size:16px;
    font-weight:bold;
}

/* MOBILE */

@media(max-width:1000px){

    .navbar{
        height:auto;
        flex-direction:column;
        gap:18px;
        padding:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:22px;
    }

    .nav-join-btn{
        width:auto;
        padding:10px 22px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .apply-form{
        padding:25px;
    }

    .hero-overlay h1{
        font-size:34px;
    }

    .apply-logo{
        width:180px;
    }
}