body {
    font-family: 'StagSans Book', 'Helvetica Neue', 'Avenir Next LT Pro Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-size: 14px;
    background: transparent;
}

#country, #state, #events {
    background-color: #ECECEC;
}

#companyName, #message, #events, #tickets {
    width: 100%;
}

.error-border {
    border-color: red !important;
}

.error-message {
    color: black;
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: -90px;
}

h1 {
    font-size: 25px;
    font-weight: 300;
    color: #3f3f3f;
    margin-left: 90px;
}

h1 span {
    display: block;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    margin-bottom: 18px;
    color: #999;
    font-weight: 100;
}

input[type="checkbox"] {
    margin-right: 5px;
}

input[type="submit"] {
    display: block;
    font-weight: 100;
    width: 50%;
    padding: 10px 20px;
    background-color: #b5964a;
    color: #fff;
    border: none;
    margin: 0 auto;
    cursor: pointer;
    font-family: "StagSans-Book", Helvetica, sans-serif;
}

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

.radio-container input[type="radio"] {
    display: inline-block;
}

.radio-container label {
    display: inline-block;
    vertical-align: middle;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1200px) {
    h1 {
        font-size: 22px;
        margin-left: 60px;
        margin-bottom: -60px;
    }

    input[type="submit"] {
        width: 70%;
    }

    .error-message {
        top: -70px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 20px;
        margin-left: 40px;
        margin-bottom: -40px;
    }

    input[type="submit"] {
        width: 80%;
    }

    .error-message {
        top: -50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 18px;
        margin-left: 20px;
        margin-bottom: -20px;
    }

    input[type="submit"] {
        width: 90%;
    }

    .error-message {
        top: -30px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 12px;
    }

    h1 {
        font-size: 16px;
        margin-left: 10px;
        margin-bottom: -15px;
    }

    input[type="submit"] {
        width: 100%;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea,
    input[type="number"] {
        font-size: 12px;
    }

    .error-message {
        font-size: 12px;
        top: -10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    h1 {
        font-size: 14px;
        margin-left: 5px;
        margin-bottom: -10px;
    }

    input[type="submit"] {
        width: 100%;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea,
    input[type="number"] {
        font-size: 12px;
    }

    .error-message {
        font-size: 12px;
        top: -5px;
    }
}