#customPageTitle {
    display: none;
}

.formContainer {
    width: 25%;
    float: left;
    text-transform: uppercase;
    font-size: 35px;
    line-height: 40px;
    margin-left: 10%;
    margin-top: 70px;
}

.contactDiv {
    float: left;
    width: 25%;
    margin-left: 10%;
    margin-top: 30px;
}

.contactInput {
    height: 50px;
    border-radius: 0;
    border-color: #D8D0BB;
}

.contactInput::placeholder {
    color: #00000066;
}

.contactTextarea {
    padding-right: 0;
    width: calc(100% - 30px);
    height: 15rem;
}

.contactRow {
    height: 50px;
    margin-bottom: 15px;
}

.contactLabel {
    line-height: 30px;
    margin: unset;
    padding-left: 20px;
    color: #000000;
}

.file-input-wrapper {
    height: 30px;
    border: unset;
    background-color: var(--dark-brown);
    line-height: 30px;
}

.file-input-wrapper:hover {
    border: 1px solid #00000066;
    background-color: transparent;
    color: #000000;
}

.file-input-name {
    color: #000000;
    line-height: 30px;
}

.sendContact {
    width: calc(100% - 2px);
    border-radius: 0;
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    font-size: 18px;
    background-color: var(--dark-brown);
}

.customPageImage {
    margin-top: 40px;
    top: 0;
}

@media screen and (max-width: 768px) {
    .formContainer {
        width: 90%;
        margin: 30px 5%;
        text-align: center;
        margin-bottom: 15px;
        font-size: 3rem;
    }

    .contactDiv {
        width: 90%;
        margin: 20px 5%;
    }

    .contactInput {
        width: calc(100% - 22px);
    }

    .contactRow {
        margin-top: 15px;
        height: fit-content;
    }

    .file-input-name {
        width: fit-content;
        margin: unset;
        margin-left: 5px;
    }

    .customPageImage {
        position: relative;
        margin: unset;
    }
}