
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #2e2e2e;
  background: url('assets/bg.jpg') no-repeat center center fixed;
  background-size: cover;
}
header {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2rem;
  text-align: center;
}
main {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 12px;
}
h2, h3 {
  color: #d35400;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, button {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}
button {
  background-color: #d35400;
  color: white;
  border: none;
  cursor: pointer;
}
footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 1rem;
}
