/*CONTACT FORM*/
#booking-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to top right, #338ac7, #7473bf, #514a9d);
    border-radius: 8px;
    margin-top: 1.5em;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input,
textarea,
button,
#performance-date,
#performance-type {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: gray;
}

#booking-form button {
    background-color: #e60012;
    /* Circus red */
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

#booking-form button:hover {
    background-color: #c5000e;
}



/*SOCIAL MEDIA*/
.sm {
    width: 100%;
    text-align: right;
    bottom: 0;
    z-index: 100;
    padding-right: 25px;
}

.sm-title {
    position: absolute;
    display: flex;
    position: relative;
    justify-content: right;
    align-items: right;
    right: auto;
    padding-right: 25px;
}

.sm a {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    /*CONTACT FORM*/
    #booking-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(to top right, #338ac7, #7473bf, #514a9d);
        border-radius: 8px;
        margin-top: 1.5em;
    }
    
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }
    
    input,
    textarea,
    button,
    #performance-date {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 4px;
        color: gray;
    }
    
    #booking-form button {
        background-color: #e60012;
        /* Circus red */
        color: white;
        font-weight: bold;
        cursor: pointer;
        border: none;
    }
    
    #booking-form button:hover {
        background-color: #c5000e;
    }

    /*SOCIAL MEDIA*/
    .sm {
        width: 100%;
        text-align: right;
        bottom: 0;
        z-index: 100;
        padding-right: 5px;
        font-size: small;
    }

    .sm-title {
        position: absolute;
        display: flex;
        position: relative;
        justify-content: right;
        align-items: right;
        right: auto;
        margin-top: 25px;
        padding-right: 45px;
    }

    .sm a {
        text-decoration: none;
    }

}