/* Default for mobile */

#emailForm {
    width: 100%;
}

#contactContainer {
    text-align: center;
}

#lblFirstName, #lblLastName {
    padding-top: 0;
}

#lblFirstName, #firstName {
    width: calc(50% - 8px);
    margin-right: var(--space-general);
}

#lblLastName, #lastName {
    width: calc(50% - 7px);
}

#lblEmail, #lblSubject, #lblMessage, #email, #subject, #message {
    width: 100%;
}

#message {
    resize: vertical;
}

#sendEmail {
    font-weight: bold;
    margin-top: 10px;
    padding: 2px 8px 2px 8px;
}

/* For tablets */
@media only screen and (min-width: 600px) {
    #emailForm {
        width: 60%;
    }
}

/* For desktops: */
@media only screen and (min-width: 900px) {
    #emailForm {
        width: 50%;
    }
}
