.pgr-feedbackPage {
    padding: 20px 24px 24px
}

.pgr-feedbackHeader {
    max-width: 820px;
    margin-bottom: 22px;
}

.pgr-feedbackKicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--pgr-red-dark, #AD1F21);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pgr-feedbackHeader h1 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
	font-weight: 700;
}

.pgr-feedbackHeader p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.pgr-feedbackForm {
    display: grid;
    gap: 16px;
    max-width: 860px;
}

.pgr-feedbackGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pgr-feedbackField {
    display: grid;
    gap: 7px;
}

.pgr-feedbackField span {
    color: #111827;
    font-size: 13px;
    font-weight: 600;
}

.pgr-feedbackField span em {
    color: #6b7280;
    font-style: normal;
    font-weight: 500;
}

.pgr-feedbackField input,
.pgr-feedbackField select,
.pgr-feedbackField textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-size: 14px;
    padding: 11px 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.pgr-feedbackField textarea {
    resize: vertical;
    min-height: 180px;
}

.pgr-feedbackField input:focus,
.pgr-feedbackField select:focus,
.pgr-feedbackField textarea:focus {
    border-color: var(--pgr-red-dark, #AD1F21);
    box-shadow: 0 0 0 3px rgb(173 31 33 / 12%);
}

.pgr-feedbackMath {
    max-width: 320px;
}

.pgr-feedbackTrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.pgr-feedbackActions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.pgr-feedbackSubmit,
.pgr-feedbackBack {
    min-height: 42px;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;

    box-shadow: 0 4px 10px rgb(15 23 42 / 8%);
    transition:
        background-color .15s ease,
        border-color .15s ease,
        transform .12s ease,
        box-shadow .15s ease;
}

.pgr-feedbackSubmit:hover,
.pgr-feedbackBack:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgb(15 23 42 / 14%);
}

.pgr-feedbackSubmit:active,
.pgr-feedbackBack:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgb(15 23 42 / 10%);
}

.pgr-feedbackSubmit i,
.pgr-feedbackBack i {
    font-size: 16px;
    line-height: 1;
}

.pgr-feedbackSubmit {
    border-color: var(--pgr-red-dark);
    background: var(--pgr-red);
    color: #ffffff;
}

.pgr-feedbackSubmit:hover,
.pgr-feedbackSubmit:focus {
    background: var(--pgr-red-dark);
    color: #ffffff;
}

.pgr-feedbackBack {
    border-color: #4b5563;
    background: #5b6573;
    color: #ffffff;
}

.pgr-feedbackBack:hover,
.pgr-feedbackBack:focus {
    background: #4b5563;
    color: #ffffff;
}

.pgr-feedbackNotice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 860px;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.pgr-feedbackNotice i {
    margin-top: 2px;
    flex-shrink: 0;
}

.pgr-feedbackNoticeSuccess {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.pgr-feedbackNoticeError {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 720px) {
    .pgr-feedbackPage {
        padding: 18px;
    }

    .pgr-feedbackGrid {
        grid-template-columns: 1fr;
    }

    .pgr-feedbackActions {
        align-items: stretch;
        flex-direction: column;
    }

    .pgr-feedbackSubmit,
    .pgr-feedbackBack {
        width: 100%;
    }
}