/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container styling */
.container {
  width: 400px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: fadeIn 1s ease-in;
}

/* Heading */
h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

/* Form layout */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Input fields */
input[type="text"],
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f0f0f0;
  color: #333;
}

/* Submit button */
button {
  width: 60%;
  padding: 12px;
  background-color: #00c6ff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #0072ff;
  transform: scale(1.05);
}

/* Admin Panel button */
.admin-button {
  margin-top: 20px;
  text-align: center;
}

.admin-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.admin-button a:hover {
  background-color: #e68900;
  transform: scale(1.05);
}

/* Track Complaint button */
.track-button {
  margin-top: 10px;
  text-align: center;
}

.track-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.track-button a:hover {
  background-color: #3e8e41;
  transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
