.report-page {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background:
        radial-gradient(circle at top right, #252044, transparent 40%),
        #0b1020;
}


.report-container {
    max-width: 700px;
    margin: 0 auto;
}


.report-card {

    background:#111827;

    border:1px solid #202b48;

    border-radius:20px;

    padding:35px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.25);

}



.report-title {

    margin-bottom:30px;

}


.report-title h1 {

    color:#fff;

    font-size:32px;

    margin-bottom:10px;

}


.report-title p {

    color:#8d98b5;

}




.report-product {

    display:flex;

    align-items:center;

    gap:20px;

    background:#18233c;

    padding:18px;

    border-radius:15px;

    margin-bottom:25px;

}


.report-product img {

    width:80px;

    height:80px;

    object-fit:cover;

    border-radius:12px;

}



.report-product h3 {

    color:white;

    margin:0 0 8px;

}


.report-product span {

    color:#ff7185;

}




.report-form label {

    display:block;

    color:#b7c2dd;

    margin-bottom:8px;

    margin-top:18px;

}



.report-form select,
.report-form textarea {


    width:100%;

    background:#0d1427;

    border:1px solid #263452;

    color:white;

    border-radius:12px;

    padding:14px;

    font-family:inherit;

    outline:none;

}



.report-form textarea {

    min-height:130px;

    resize:vertical;

}




.report-button {


    margin-top:25px;

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background:#ff7185;

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}



.report-button:hover {

    background:#ff536d;

    transform:translateY(-2px);

}