/* PAGE BACKGROUND */
body {
    background-color: #000;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 20px;
}

/* HEADER CENTER ALIGN */
.header {
    text-align: center;
    margin-bottom: 30px;
}

/* EVENT IMAGE RESPONSIVE */
.event-image {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
}

/* FORM CONTAINER */
.container {
    width: 90%;
    max-width: 400px;
    background: #111;
    padding: 25px;
    border-radius: 10px;
    margin: 0 auto;          /* center horizontally */
    margin-top: 40px;        /* moves form down */
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* FORM HEADING */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* INPUT FIELDS */
input, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
    background: #222;
    color: white;
}

/* SUBMIT BUTTON */
input[type="submit"] {
    background: #00c6ff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background: #00a4d6;
}