
:root {
    --bg-color: #032603;
    --accent-color: #E74C3C;
  }
  
  /* Reporting Fraud Section */
  .reporting-fraud {
    padding: 100px 0;
  }
  
  .reporting-fraud h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .reporting-fraud p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
  }
  
  #report-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  #report-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  #report-form select,
  #report-form textarea,
  #report-form input[type="file"],
  #report-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  #report-form textarea {
    height: 150px;
  }

  #report-form textarea:focus,  #report-form input:focus,  #report-form select:focus{
    outline: 2px solid rgba(255, 0, 0, 0.326);
  }
  
  #report-form button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #report-form button:hover {
    background-color: #4a4a5f;
  }
  
  /* CSS styles from previous response... */

/* Fancy pop message */
.pop-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
    transition: opacity 0.5s, transform 0.5s;
  }
  
  .pop-message-text {
    font-size: 1.2rem;
  }
  
  .hidden {
    display: none;
  }
  