body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000;
}

.header {
  background-color: #1f2937;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.menu-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.header h1 {
  font-size: 1.5rem;
}

.main {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1rem;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, select {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  background-color: #e11d48;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #be123c;
}

.footer {
  background-color: #f3f4f6;
  text-align: center;
  padding: 2rem 1rem;
}

.footer h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: #1d4ed8;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.icons {
  margin-top: 1rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.error-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: red;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  animation: slideDown 2s ease forwards;
  display: none;
}