body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    font-size: 15px; /* Base font size */
}

*, *:before, *:after {
    box-sizing: border-box; /* Ensures padding does not affect overall width */
}

.container {
    margin: 0 auto;
    max-width: 1100px; /* Maximum width of container on large screens */
    padding: 0 10px; /* Padding on smaller screens */
}

.header {
    background-color: #fff2df;
    color: #021229;
    padding: 10px;
    text-align: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 30px; /* Space between header and form */
}

.logo-container img {
    width: 100px; /* Adjusts the width to make the image smaller */
    height: auto; /* Maintains the aspect ratio */
    margin-bottom: 1px; /* Space between the logo and the header text */
    display: block; /* Ensures the logo is block level for margin auto to work */
    margin-left: auto; /* Centers the image horizontally */
    margin-right: auto; /* Centers the image horizontally */
}


.header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.signup-form {
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
	    text-align: center; /* Centers the content of .form-group */
	    font-weight: bold;

    max-width: 500px; /* or your desired width */
    margin-left: auto;
    margin-right: auto;
}

}

label {
    display: block;
    margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"] {
    width: 100%; /* Slightly less than full width to add padding */
    padding: 12px;
	    margin: 0 auto; /* Centers the input fields */
    border-radius: 10px;

    border: 1px solid #ccc;
    font-size: 1rem;
	    text-align: center; /* Centers the text you enter in the form */

}

input[type="submit"] {
    background-color: #021229;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px; /* Adds some space above the submit button */
	margin-bottom: 50px; /* Adds some space above the submit button */

}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.consent-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px; /* Adds space before the submit button */
}

footer.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    clear: both; /* Fixes footer placement */
}

@media (min-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1.2rem;
    }

    .form-group {
        max-width: 500px; /* Max width for form inputs */
        margin-left: auto; /* Centers form inputs */
        margin-right: auto; /* Centers form inputs */
    }
}



#successMessage {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 5px;
    text-align: center;
    display: none; /* Initially hidden */
}

#successMessage h2, #successMessage h3, #successMessage h4 {
    color: #007aff;
}

#successMessage p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ticket-button {
    display: inline-block;
    background-color: #007aff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.ticket-button:hover {
    background-color: #0056b3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#successMessage {
    animation: slideDown 0.5s ease-out forwards;
}

.top-banner {
    background-color: #021229;
    text-align: center;
    padding: 10px 0;
}


.top-banner a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #007aff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	display: inline-block; /* Ensure transform property applies */


}

.top-banner a:hover {
    background-color: #0056b3;
}






