*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}
/* Navbar */

.navbar{
    width:100%;
   
    background:#121212;
    border:2px solid #ff008a;
    border-radius:15px;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
    box-shadow:0 0 20px rgba(255,0,138,.25);
}

.logo{
    color:#ff008a;
    font-size:22px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff008a;
}

/* Mobile */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .nav-links{
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }
}

body{
    min-height:100vh;
    background:#0a0a0a;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.form-container{
    width:100%;
    max-width:550px;
    background:#121212;
    border:2px solid #ff008a;
    border-radius:20px;
    padding:30px;
    box-shadow:0 0 30px rgba(255,0,138,.35);
}

.form-container h2{
    text-align:center;
    color:#ff008a;
    margin-bottom:25px;
    font-size:32px;
}

.input-group{
    margin-bottom:18px;
}

label{
    display:block;
    margin-bottom:8px;
    color:white;
    font-weight:600;
}

input,
textarea{
    width:100%;
    padding:14px;
    background:#1c1c1c;
    border:2px solid #333;
    border-radius:10px;
    color:white;
    font-size:15px;
    transition:.3s;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#ff008a;
    box-shadow:0 0 12px rgba(255,0,138,.4);
}

textarea{
    resize:vertical;
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#ff008a;
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#ff2ea2;
    transform:translateY(-2px);
}

#message{
    text-align:center;
    margin-top:15px;
    font-weight:bold;
}

/* Bottom Banner */

.bottom-banner{
    width:100%;
    max-width:1200px;
    margin-top:40px;
}

.bottom-banner img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 0 25px rgba(255,0,138,.25);
}

/* Mobile Responsive */

@media (max-width:768px){

    .form-container{
        padding:20px;
    }

    .form-container h2{
        font-size:26px;
    }

    input,
    textarea,
    button{
        font-size:16px;
    }

    .bottom-banner{
        margin-top:25px;
    }
}
.bottom-banner a{
    display:block;
}

.bottom-banner img{
    width:100%;
    height:auto;
    display:block;
    border-radius:16px;
    box-shadow:0 0 25px rgba(255,0,138,.25);
    transition:transform .3s ease;
}

.bottom-banner img:hover{
    transform:scale(1.02);
}