.inputSection {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    z-index: 700;
    font-family: 'Nunito Sans', 'Istok Web', serif, 'Roboto', sans-serif;
    overflow: hidden;

    .contactBG img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 75%;
        z-index: -1;
    }

    .contactForm {
        background-color: white;
        color: #272624;
        padding: 20px;
        border-radius: 20px;
        width: 400px;
        position: relative;
        left: 150px;
        box-shadow: 0 0 10px black;
    }
    .noLeft {
        left: 0;
    }

    .contactForm h2 {
        margin: 0;
        margin-bottom: 10px;
    }

    p {
        font-size: 0.85em;
    }

    .underbar {
        margin-bottom: 20px;
    }

    .flexRow {
        justify-content: space-between;
    }
    .flexRow .formGroup {
        width: calc(50% - 5px);
    }

    .formGroup {
        position: relative;
        margin-bottom: 10px;
    }

    .formGroup label {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: white;
        border-radius: 20px;
        padding: 0 5px;
        transition: 0.3s;
        pointer-events: none;
    }

    .formGroup input,
    .formGroup textarea {
        width: calc(100% - 20px);
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
    }

    .formGroup input:focus + label,
    .formGroup input:not(:placeholder-shown) + label,
    .formGroup textarea:focus + label,
    .formGroup textarea:not(:placeholder-shown) + label {
        top: -18px;
        left: 0;
        font-size: 12px;
        color: #000;
    }

    .formGroup textarea {
        resize: none;
        height: 100px;
    }

    .formGroup input,
    .formGroup textarea {
        min-height: 20px;
        border-radius: 20px;
        transition: 0.25s;
    }

    .formGroup input:focus,
    .formGroup textarea:focus {
        border-color: #000;
    }

    .btn {
        display: inline-block;
        padding: 10px 20px;
        margin-bottom: 10px;
        font-size: 1.25em;
        color: #fff;
        border: none;
        border-radius: 20px;
        box-shadow: 0 10px 0 0 #705710;
        cursor: pointer;
        transition: 0.25s;
    }
    .btn:hover {
        background-color: #c8a547;
        transform: translateY(-2px);
        box-shadow: 0 12px 0 0 #705710;
    }
    .btn:active {
        transform: translateY(10px);
        box-shadow: 0 0 0 0 #705710;
    }

    .specialOffer {
        position: absolute;
        top: 75%;
        right: 0;
        max-width: calc(50% - 150px);
        background-color: #0000007e;
        color: #fff;
        padding: 10px 100px 10px 20px;
        border-radius: 20px 0 0 20px;
        box-shadow: 0 0 10px black;
        font-size: 1.25em;
        transition: 0.25s;
        transform: translate(100%, -50%);
    }
    .specialOffer:hover {
        padding-right: 125px;
    }
    .specialOffer.outward {
        transform: translate(0, -50%);
    }
}

/* Media Queries */

/* Tablet */
@media (max-width: 1024px) {
    * {
        .inputSection {
            .contactForm {
                left: 50px;
            }
        }
    }
}

/* Mobile */
@media (max-width: 768px) {
    * {
        .inputSection {
            display: flex;
            flex-direction: column;

            img {
                filter: brightness(0);
            }
            .contactForm {
                width: calc(100% - 40px);
                border-radius: 0;
                left: 0 !important;
                height: 100%;
                padding-top: 50px;
                padding-bottom: 50px;

                .btn {
                    width: 100%;
                    margin: 40px 0 0 0;
                }
            }

            .specialOffer {
                position: relative;
                display: block;
                max-width: none;
                width: calc(100% - 40px);
                padding: 20px;
                transform: translate(0, 0);
                top: 0;
                box-shadow: none;
            }
            .specialOffer.outward {
                transform: translate(0, 0);
            }
            .specialOffer:hover {
                padding-right: 20px;
            }
        }
    }

    @media (max-height: 820px) {
        .inputSection {
            padding-bottom: 100px;
            transform: translateY(25px);
        }
    }
    @media (max-height: 730px) {
        .inputSection {
            padding-bottom: 300px;
            transform: translateY(100px);
        }
    }
    @media (max-height: 600px)
    {
        .inputSection {
            padding-bottom: 500px;
            transform: translateY(200px);
        }
    }
}

/* Tiny */
/* Mobile */
@media (max-width: 400px) {
    * {
        .inputSection {
            .specialOffer {
                font-size: 0.75em;
            }
        }
    }
}