body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #c2db34, #e74c3c);
}
.container {
  text-align: center;
  padding: 45px;
  background: linear-gradient(to bottom right, #e74c3c, #c2db34);
  border-radius: 26px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 90%;
}
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}
input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #0056b3;
}
#report-issue {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#report-issue button {
  background-color: #dc3545; /* Use a color that stands out */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#report-issue button:hover {
  background-color: #c82333;
}
