body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
}

.hero {
  background: url('images/background.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(52, 40, 0, 0.6);
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  color: #fdee79;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  color: #fdee79;
}

p {
  font-size: 1.2rem;
  color: #fdee79;
  margin-bottom: 1.5rem;
}

form input {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  margin-right: 0.5rem;
  width: 220px;
  max-width: 80%;
}

form button {
  background-color: #ac8400;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}
