/* =========================================================
   REPORT AN ISSUE PAGE
   ========================================================= */

.report-body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f6f5;

    font-family: inherit;

    padding: 24px;
}

.report-card {
    width: 100%;
    max-width: 460px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    padding: 28px 26px 24px;
}

.report-header h1 {
    margin: 0 0 8px;

    font-size: 20px;

    color: #1a1a1a;
}

.report-header p {
    margin: 0 0 20px;

    font-size: 13.5px;

    line-height: 1.5;

    color: #666;
}

.report-form {
    display: flex;
    flex-direction: column;
}

.report-form label {
    font-size: 13px;

    font-weight: 600;

    color: #333;

    margin: 12px 0 6px;
}

.report-form input,
.report-form textarea {
    font-family: inherit;

    font-size: 14px;

    padding: 10px 12px;

    border: 1px solid #ddd;

    border-radius: 8px;

    outline: none;

    resize: vertical;

    transition: border-color 0.15s ease;
}

.report-form input:focus,
.report-form textarea:focus {
    border-color: var(--matrix-green, #1da851);
}

.report-form button {
    margin-top: 20px;

    padding: 11px 16px;

    border: none;
    border-radius: 8px;

    background: var(--matrix-green, #1da851);

    color: #fff;

    font-size: 14.5px;
    font-weight: 650;

    cursor: pointer;

    transition: opacity 0.15s ease;
}

.report-form button:hover {
    opacity: 0.9;
}

.report-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.report-status {
    margin: 12px 0 0;

    font-size: 13px;

    min-height: 18px;
}

.report-status.success {
    color: var(--matrix-green, #1da851);
}

.report-status.error {
    color: #d64545;
}


/* =========================================================
   SUCCESS VIEW (shown after submit, replaces the form)
   ========================================================= */

.report-success {
    text-align: center;

    padding: 12px 4px 4px;
}

.report-success-icon {
    width: 56px;
    height: 56px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(29, 168, 81, 0.12);

    color: var(--matrix-green, #1da851);

    font-size: 28px;
    font-weight: 700;
}

.report-success h2 {
    margin: 0 0 10px;

    font-size: 18px;

    color: #1a1a1a;
}

.report-success p {
    margin: 0;

    font-size: 13.5px;

    line-height: 1.55;

    color: #666;
}