/* RESET INPUT DARI GLOBAL */
.report-form input,
.report-form textarea,
.report-form button {
    all: unset;
    box-sizing: border-box;
}

/* FORM LAYOUT */
.report-form {
    width: 100%;
    max-width: 420px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INPUT */
.report-form input,
.report-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 14px;
    width: 100%;
}

.report-form textarea {
    min-height: 110px;
    resize: vertical;
}

.report-form input::placeholder,
.report-form textarea::placeholder {
    color: #888;
}

/* ===== FINAL BUTTON FIX ===== */

.card .report-btn {
    width: 100% !important;
    margin-top: 20px !important;
    padding: 14px !important;
    border-radius: 12px !important;
    border: none !important;
    font-weight: 600 !important;
    background: #00e5ff !important;
    color: #000 !important;
    cursor: pointer !important;
    display: block !important;
}

.card .report-btn:hover {
    background: #00c8e0 !important;
}