body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #d3b77b;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background-color: rgb(248, 240, 219);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
  background-image: url('background-xpressolanding.jpeg');
}

h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"] {
  width: 95%;
  padding: 0.5rem;
  border: 1px solid #ffcc74;
  border-radius: 5px;
  font-size: 82%;
}

.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #a76e28;
  color: rgb(255, 234, 171);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-family:'Courier New', Courier, monospace;
}

.submit-btn:hover {
  background-color: #ffcd5a;
}

.message {
  margin-top: 1rem;
  text-align: center;
  color: rgb(255, 178, 13);
}
