#host-private-event {
    display: grid;
    grid-gap: 20px;
}
@media screen and (max-width: 900px) {
    #host-private-event {
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width: 900px) {
    #host-private-event {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 1500px) {
    #host-private-event {
        padding: 3em 5vw;
    }
}
@media screen and (min-width: 1500px) {
    #host-private-event {
        padding: 3em calc( (100vw - 1500px) / 2);
    }
}


#host-private-event > .left-side > h1 {
    font-weight: lighter;
    text-transform: uppercase;
}

#host-private-event > .left-side > p {
    font-family: var(--sans-serif), sans-serif;
    color: gray;
}

#host-private-event > .left-side > .survey-container {
    margin-top: 6em;    
}

#host-private-event > .left-side > .survey-container > h2 {
    text-transform: uppercase;
    font-weight: 200;
}

#host-private-event > .left-side > .survey-container label {
    font-family: var(--sans-serif), sans-serif;
    color: gray;
}

#host-private-event > .left-side > .survey-container input:not([type="submit"]),
#host-private-event > .left-side > .survey-container select {
    border: none;
    border-bottom: 1px solid;
    background: transparent;
    width: 250px;
}

#host-private-event > .left-side > .survey-container input:not([type="submit"]):focus,
#host-private-event > .left-side > .survey-container select:focus {
    border-bottom-width: 3px;
    border-bottom-color: lightblue;
}

#host-private-event #btnSurvey {
    font-family: var(--sans-serif), sans-serif;
    padding: 1em 6em;
}

#host-private-event > .right-side > .image {
    background: gray url("https://peoplevine.blob.core.windows.net/media/811/Optimized-ParkHouseInteriors_1_0069.jpg") center no-repeat;
    background-size: cover;
    min-height: 50vh;  
    width: 100%;
}