input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
}

input[type="button"] {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
}

textarea {
    font-family: inherit;
}

textarea:disabled {
    font-family: inherit;
    color: black;
    background-color: white;
}

.section--inner-XSmall {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.contact--PageTitle {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact--text {
    font-size: 18px;
    /* font-weight: bold; */
    margin-bottom: 60px;
    text-align: center;
}

.inputArea {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.inputItem {
    width: auto;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
    /* font-weight: bold; */
    line-height: 1.6;
    margin-bottom: 5px;
}

.inputContents {
    text-align: left;
    width: 100%;
    max-width: 100%;
    height: 50px;
    border: 1px solid black;
    border-radius: 4px;
    font-size: 16px;
    /* font-weight: bold; */
    line-height: 1.4;
    padding: 10px 15px 10px;
}

.inputContents::placeholder {
    color: grey;
}

.inputContents-multiLine {
    /* height: 160px; */
    height: auto;
    min-height: 50px;
}

.btnArea {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    column-gap: 24px;
}

.submitBtn {
    padding: 10px 30px;
    width: 50%;
    background-color: #f0f0f0;
    color: black;
    border: 1px solid grey;
    font-size: 1.6rem;
}

.submitBtn:hover {
    cursor: pointer;
    background-color: rgba(200, 200, 200, 0.85);
}

.backBtn {
    padding: 10px 30px;
    width: 50%;
    background-color: #f0f0f0;
    color: black;
    border: 1px solid grey;
    font-size: 1.6rem;
}

.backBtn:hover {
    cursor: pointer;
    background-color: rgba(200, 200, 200, 0.85);
}

@media screen and (max-width: 1024px) {
    .contact--PageTitle {
        font-size: 24px;
    }

    .contact--text {
        font-size: 16px;
        margin-bottom: 32px;
        text-align: left;
    }
}
