body {
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}


#container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.form-container {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
  color: #333;
}

form input,
form select,
form button {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #5cb85c;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #4cae4c;
}

.content {
  margin-bottom: 20px;
  padding: 10px;
}

.content h3 {
  color: #333;
  margin-bottom: 10px;
}

.content p,
.content ul {
  color: #666;
  line-height: 1.6;
}

.content ul {
  list-style-type: none;
  padding: 0;
}

.content ul li {
  margin: 5px 0;
}

.content ul li a {
  color: #337ab7;
  text-decoration: none;
}

.content ul li a:hover {
  text-decoration: underline;
}
