/* =========================
   Base form
========================= */
.mrhost-incident-form {
    background: #fff;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    padding: 25px 20px;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}

/* =========================
   Title & description
========================= */
.generic-page-title,
.generic-page-text {
    font-family: "DM Sans", sans-serif;
    color: #1D1E20;
    text-align: center;
}

.generic-page-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 10px;
}

.generic-page-text {
    font-size: 15px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

/* Mobile: left aligned */
@media (max-width: 767px) {

    .generic-page-title,
    .generic-page-text {
        text-align: left;
    }
}

/* =========================
   Labels
========================= */
.mrhost-incident-form label {
    display: block;
    margin-bottom: 20px;
    /* more space between label & field */
    font-size: 15px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

/* =========================
   Inputs & textarea
========================= */
.mrhost-incident-form input,
.mrhost-incident-form textarea {
    width: 100%;
    margin-top: 10px;
    /* extra spacing under label */
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #d5dfff;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    outline: none;
    /* remove outline */
    transition: border-color 0.25s ease;
    box-sizing: border-box;
}

.mrhost-incident-form input:focus,
.mrhost-incident-form textarea:focus {
    border-color: #673DE6;
}

/* =========================
   Radio buttons
========================= */
.incident-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.incident-radio input {
    display: none;
}

.incident-radio span {
    padding: 10px 18px;
    border: 1px solid #d5dfff;
    border-radius: 8px;
    cursor: pointer;
    background: #fafbff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    transition: all 0.2s ease;
}

.incident-radio input:checked+span {
    background: #673DE6;
    color: #fff;
    border-color: #673DE6;
}

/* =========================
   Checkbox (custom)
========================= */

.mrhost-incident-form label.incident-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.incident-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #673DE6;
    margin-bottom: 10px;
}

.mrhost-incident-form label.incident-checkbox span {
    display: flex;
    align-items: center;
    font-weight: 400;
    line-height: 1.4;
}

.incident-checkbox a {
    color: #1D1E20;
    transition: color 0.2s ease;
}

.incident-checkbox a:hover {
    color: #673DE6;
}

/* =========================
   Button
========================= */
.mrhost-incident-form button {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    background: #673DE6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mrhost-incident-form button:hover {
    background: #5025D1;
    /* correct hover color */
}

/* =========================
   Feedback
========================= */
.incident-feedback {
    margin-top: 15px;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}