
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
}
.logo-container img {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
nav ul li {
  display: inline;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h1 {
  text-align: center;
  color: #2c3e50;
}
.description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
}
label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
input[type="file"] {
  padding: 5px;
}
button {
  margin-top: 20px;
  padding: 12px;
  background-color: #007B55;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #005F3E;
}
.anon-warning {
  margin-top: 20px;
  font-size: 0.95em;
  color: #333;
}
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: white;
}
footer a {
  color: #ff6600;
  text-decoration: none;
}
