.oem-web-form__fields {
    display: grid;
    gap: 16px;
}

.oem-web-form__field {
    display: grid;
    gap: 8px;
}

.oem-web-form__label {
    display: inline-flex;
    gap: 4px;
    color: #414141;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.oem-web-form__required {
    color: #164194;
}

.oem-web-form__control {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border: 1px solid #d9dee8;
    border-radius: 6px;
    background: #ffffff;
    color: #1e1e1e;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
}

.oem-web-form textarea.oem-web-form__control {
    min-height: 132px;
    resize: vertical;
}

.oem-web-form input[type="file"].oem-web-form__control {
    padding: 12px 14px;
}

.oem-web-form__control:focus {
    border-color: #164194;
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.12);
}

.oem-web-form__actions {
    margin-top: 20px;
}

.oem-web-form__submit {
    min-width: 180px;
    min-height: 52px;
    padding: 12px 28px;
    border: 0;
    border-radius: 6px;
    background: #164194;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.oem-web-form__submit:hover {
    background: #0e2e6a;
}

.oem-web-form__message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.oem-web-form__message--success {
    background: #edf8ef;
    color: #23643c;
}

.oem-web-form__message--error {
    background: #fff1f1;
    color: #9b1c1c;
}
