body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    background-color: #100000;  /* container form #fff to dark gray ,#333333,#133333 */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;  /* ADDED: So container appears above musical notes */
    z-index: 10;  /* ADDED: Higher z-index than musical notes */
}

.flyer-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

h1 {
    color: #ffffff;  /* CHANGED: from #333 to #ffffff white for visibility on dark background */
    text-align: center;
    margin-bottom: 40px;  /* CHANGED: from 20px to 40px - Added 2 extra spaces below title */
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #5c67f2;  /* CHANGED: from #dddddd to blue #5c67f2 (same as Send Form button) for labels */
    font-weight: bold;  /* ADDED: Makes all labels bold */
}

form input, form select, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ff0000; /* #ccc , red #ff0000,yellow #ffff00,  */
    border-radius: 20px; /*4 */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-size: 16px;
}


/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* input fields Gray background for  */
form input {
    background-color: #001;  /* Light gray #cccccc , 001*/
    color: #a9a9a9;  /* ffffff, ADDED: White text color for input fields (Company Name, Address, City, Contact Person, Contact Email, Contact Phone) */
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& */

/* CHANGED: Black background for select dropdowns with white text */
form select {
    background-color: #000000;  /* CHANGED: from #cccccc to black #000000 */
    color: #a9a9a9;  /* ADDED: #ffffff White text color for selected options */
}

form button {
    background-color: #5c67f2;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;  /* ADDED: Makes button a block element so margins work for centering */
}


form button:hover {
    background-color: #4a54e1;
}

/* Basic responsiveness for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
}
