.form_container {
    background-color: #F8F7FA;
    width: 900px;
    margin: 2em auto;
    padding: 2em;
    border-radius: 8px;
}

.form_grid {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
}

.form_label {
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

fieldset {
    margin-bottom: 16px;
}

.form_input {
    display: block;
    width: -webkit-fill-available;
    padding: 0 10px;
    height: calc(1.6em + 0.75rem + 2px);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #383838;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #383838;
    border-radius: 0.25rem;
    font-size: 16px;
}

.form_txtarea {
    display: block;
    width: -webkit-fill-available;
    padding: 0 10px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #383838;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #383838;
    border-radius: 0.25rem;
    resize: none;
    font-size: 16px;
    height: 205px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.btn_primary {
    display: inline-block;
    padding: 12px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    min-width: 144px;
    text-align: center;
    font-size: 14px;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form_container {
        width: -webkit-fill-available;
    }

    .form_grid {
        display: block;
    }
}