.portal-feedback {
    margin-top: 18px;
    background:
        radial-gradient(circle at top right, rgba(62, 114, 128, 0.08), transparent 22%),
        #ffffff;
}

.portal-feedback__messages {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.portal-feedback__message {
    margin: 0;
    padding: 14px 18px;
    border: 1px solid #bcd6c4;
    border-radius: 12px;
    background: #eef7f0;
    color: #2f6b4a;
    font-weight: 600;
}

.portal-feedback__form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    max-width: 640px;
}

.portal-feedback__field {
    display: grid;
    gap: 6px;
}

.portal-feedback__field label {
    color: #1f2933;
    font-size: 15px;
    font-weight: 600;
}

.portal-feedback__field input,
.portal-feedback__field select,
.portal-feedback__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dbe6ea;
    border-radius: 12px;
    background: #fbfcfd;
    color: #1f2933;
    font: inherit;
}

.portal-feedback__field textarea {
    min-height: 140px;
    resize: vertical;
}

.portal-feedback__field input:focus-visible,
.portal-feedback__field select:focus-visible,
.portal-feedback__field textarea:focus-visible {
    outline: 3px solid rgba(62, 114, 128, 0.18);
    outline-offset: 2px;
}

.portal-feedback__errors {
    margin: 0;
    padding-left: 18px;
    color: #b3261e;
    font-size: 14px;
}

.portal-feedback__form .portal-button {
    justify-self: start;
}

@media (max-width: 760px) {
    .portal-feedback__form {
        max-width: none;
    }
}
