    .event-form-wrapper {
        margin: 30px auto;
        width: 100%;
        max-width: 500px;
        background: linear-gradient(135deg, #3a4b57, #2e353b); /* Lighter gradient */
        padding: 20px;
        border: 2px solid #d4a017;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
    }

    .event-form-content {
        background: transparent;
        padding: 20px;
    }

    .event-form-content h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #e6b800; /* Slightly lighter gold */
        font-size: 24px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
    }

    .event-form-content .form-group {
        margin-bottom: 20px;
    }

    .event-form-content label {
        display: block;
        margin-bottom: 8px;
        color: #e6b800; /* Lighter gold for labels */
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .event-form-content input,
    .event-form-content select {
        width: 100%;
        padding: 15px;
        border: 1px solid #666; /* Lighter border */
        border-radius: 8px;
        background: #2a2f34; /* Lighter input background */
        color: #f0f0f0; /* Lighter text color */
        font-size: 10px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        transition: all 0.3s ease;
    }

    .event-form-content input:focus,
    .event-form-content select:focus {
        border-color: #e6b800; /* Lighter gold on focus */
        background: #353b41; /* Slightly lighter background on focus */
        outline: none;
        box-shadow: 0 0 10px rgba(230, 184, 0, 0.5);
    }

    .event-form-content button {
        background: linear-gradient(90deg, #e6b800, #c99800); /* Lighter gold gradient */
        color: #1a1f24; /* Slightly lighter text for contrast */
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .event-form-content button:hover {
        background: linear-gradient(90deg, #ff4d80, #e6b800); /* Adjusted hover gradient with lighter tones */
        box-shadow: 0 5px 15px rgba(230, 184, 0, 0.5);
    }
    /* 8. Responsive styles */
@media (max-width: 768px) {
    
}
@media (max-width: 768px) {
        .event-form-wrapper {
            max-width: 90%; /* Reduce width to fit smaller screens */
            padding: 5px; /* Slightly reduce padding */
            margin: 10px auto; /* Adjust margin for mobile */
        }

        .event-form-content {
            padding: 5px; /* Reduce padding inside the form */
        }

        .event-form-content h2 {
            font-size: 20px; /* Smaller heading size */
            margin-bottom: 10px; /* Reduce spacing */
            letter-spacing: 1.5px; /* Slightly tighter letter spacing */
        }

        .event-form-content .form-group {
            margin-bottom: 5px; /* Reduce spacing between form groups */
        }

        .event-form-content label {
            font-size: 14px; /* Smaller label text */
            margin-bottom: 6px; /* Reduce spacing */
        }

        .event-form-content input,
        .event-form-content select {
            padding: 5px; /* Reduce padding for inputs */
            font-size: 13px; /* Smaller font size */
            border-radius: 4px; /* Slightly smaller border radius */
        }

        .event-form-content input:focus,
        .event-form-content select:focus {
            box-shadow: 0 0 8px rgba(230, 184, 0, 0.4); /* Slightly smaller shadow */
        }

        .event-form-content button {
            padding: 10px 20px; /* Reduce padding for the button */
            font-size: 14px; /* Smaller button text */
            border-radius: 4px; /* Match input border radius */
        }

        .event-form-content button:hover {
            box-shadow: 0 3px 10px rgba(230, 184, 0, 0.4); /* Smaller shadow on hover */
        }
    }