.contact-us-content-section {
    min-height: 100vh;
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px;
}

.contact-us-content-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us-content-form-divide {
    display: flex;
    gap: 10px;
}

.contact-us-content-form-textarea {
    width: 100%;
    height: 150px;
    border: 2px solid #d0cecf;
    border-radius: 3px;
    padding-left: 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 146.52%;
    letter-spacing: 0.025em;
    background: #FFF;
    color: #000;
}

.contact-us-content-form-input {
    width: 100%;
    height: 30px;
    border: 2px solid #d0cecf;
    border-radius: 3px;
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 146.52%;
    letter-spacing: 0.025em;
    background: #FFF;
    color: #000;
}

.contact-us-content-form-button {
    width: 120px;
    height: 35px;
    background: #ff8f01;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 111.02%;
    text-align: center;
    letter-spacing: 0.025em;
    color: #FFFFFF;
    cursor: pointer;
}

.contact-us-content-form-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

@media(max-width: 768px) {
    .contact-us-content-form {
        text-align: center;
    }

    .contact-us-content-form-divide {
        flex-direction: column;
    }
}