/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("https://cdn.prod.website-files.com/620ec747459e13c7cf12a39e/625b10a58137b364b18df2ea_iStock-94179607.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Container styles */
.container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 1s ease-in-out;
}

/* Title styles */
.title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    animation: slideDown 1s ease-in-out;
}

/* Form styles */
.report-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

.report-form input,
.report-form select,
.report-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.report-form .submit-button {
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    background: red;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.report-form .submit-button:hover {
    background: rgb(230, 67, 67);
}

/* Success message */
#successMessage {
    margin-top: 20px;
    color: #4cae4c;
    font-size: 16px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.hidden {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .container {
        width: 80%;
        margin: 40px auto;
        padding: 15px;
    }

    .title {
        font-size: 22px;
    }

    .report-form input,
    .report-form select,
    .report-form textarea {
        font-size: 13px;
    }

    .report-form .submit-button {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 30px auto;
        padding: 10px;
    }

    .title {
        font-size: 20px;
    }

    .report-form input,
    .report-form select,
    .report-form textarea {
        font-size: 12px;
    }

    .report-form .submit-button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 20px auto;
        padding: 8px;
    }

    .title {
        font-size: 18px;
    }

    .report-form .submit-button {
        padding: 8px;
        font-size: 13px;
    }
}
