    /* Reset */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Orbitron', sans-serif;
    }

    body {
        background: url('images/b1.png') no-repeat center center/cover;
        min-height: 100vh;
        color: #00fff0;
    }

    /* Navbar */

    nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        background: rgba(0, 0, 30, 0.8);
        padding: 15px;
        box-shadow: 0 0 20px #00fff0;
    }

    nav a {
        text-decoration: none;
        color: #00fff0;
        font-weight: bold;
        position: relative;
        transition: 0.3s;
    }

    nav a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #00fff0;
        left: 0;
        bottom: -5px;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a.active {
        color: #fff;
    }

    @keyframes moveBG {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(50%);
        }
    }

    /* Section Recruitment */

    .recruitment-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        position: relative;
        z-index: 1;
    }

    .recruitment-section h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #00eaff;
        text-shadow: 0 0 10px #00bfff, 0 0 20px #00eaff;
        animation: neonTitle 2s infinite alternate;
    }

    @keyframes neonTitle {
        from {
            text-shadow: 0 0 5px #00bfff, 0 0 10px #00eaff;
        }
        to {
            text-shadow: 0 0 20px #00bfff, 0 0 40px #00eaff;
        }
    }

    /* Form */

    form {
        background: rgba(0, 10, 30, 0.8);
        padding: 30px;
        border-radius: 15px;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
        display: flex;
        flex-direction: column;
        gap: 15px;
        border: 2px solid #00bfff;
    }

    /* Labels */

    form label {
        font-weight: bold;
        color: #00eaff;
        margin-bottom: 5px;
        text-shadow: 0 0 5px #00bfff;
    }

    /* Neon Inputs */

    form input,
    form textarea {
        background: transparent;
        border: 2px solid #00bfff;
        border-radius: 8px;
        padding: 10px;
        color: #00eaff;
        font-size: 16px;
        outline: none;
        transition: all 0.3s ease;
        resize: none;
    }

    /* Neon Text Glow Animation */

    @keyframes glow {
        0% {
            text-shadow: 0 0 2px #00eaff, 0 0 5px #00bfff;
        }
        50% {
            text-shadow: 0 0 8px #00eaff, 0 0 20px #00bfff;
        }
        100% {
            text-shadow: 0 0 2px #00eaff, 0 0 5px #00bfff;
        }
    }

    form input:focus,
    form textarea:focus {
        border-color: #00eaff;
        animation: glow 1s infinite alternate;
    }

    /* Button */

    form button {
        background: transparent;
        color: #00eaff;
        border: 2px solid #00bfff;
        padding: 12px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 10px;
        transition: all 0.3s ease;
        text-shadow: 0 0 5px #00eaff;
    }

    form button:hover {
        background: #00bfff;
        color: #000;
        box-shadow: 0 0 20px #00eaff;
    }