.mlm-our-services-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    width: 100%;
    margin-top: 18px;
}

.mlm-our-services-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mlm-our-services-form__field input {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid #cbd5db;
    border-radius: 5px;
    background: #fff;
    color: #263b45;
    font: inherit;
}

.mlm-our-services-form__field input:focus {
    border-color: #0888a7;
    box-shadow: 0 0 0 3px rgba(8, 136, 167, 0.15);
    outline: none;
}

.mlm-our-services-form__submit {
    min-height: 46px;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    background: #0888a7;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.mlm-our-services-form__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.mlm-our-services-form__status {
    grid-column: 1 / -1;
    min-height: 22px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.mlm-our-services-form__status--success {
    color: #16703a;
}

.mlm-our-services-form__status--error {
    color: #b42318;
}

@media (max-width: 1024px) {
    .mlm-our-services-form {
        grid-template-columns: 1fr;
    }
}
