#contact-section {
    height: auto;
    padding-top: 200px;
    padding-bottom: 50px;
}

#contact-title {
    text-align: center;
    font-size: 1.2rem;
}

#contact {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 20px;
}

#contact > .contact-box {
    width: calc(100% - 40px);
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact > .contact-box > .contact-box-text {
    font-size: 1.5rem;
}

#contact > .contact-box > form > .contact-textfield {
    width: 100%;
    height: 30px;
    margin-top: 10px;
    padding: 25px 10px;
    border: 1px solid #000;
    border-radius: 5px;
}

#contact > .contact-box > form > .contact-textarea {
    width: 100%;
    height: 120px;
    min-height: 120px;
    max-height: 220px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    resize: vertical;
}

#contact > .contact-box > form > .contact-submit {
    width: 100%;
    height: 50px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #3BA53A;
    border-radius: 5px;
    background-color: #3BA53A;
    color: #fff;
    cursor: pointer;
}

#contact > .contact-box > form > #form-status {
    width: calc(100% - 30px);
    min-height: 40px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

@media all and (max-width: 1350px) {
    #contact {
        width: calc(100% - 40px);
    }
}