body {
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1e1e1e;
  color: #f5f5f5;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.menu-content {
  padding: 32px;
  max-width: 600px;
  width: 100%;
  background-color: #2a2a2a;
  border-radius: 12px;
}

.menu-content h2 {
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ff914d;
  font-size: 32px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: bold;
  color: #ff914d;
  font-size: 18px;
}

form input,
form textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  background-color: #3b3b3b;
  color: #fff;
  font-size: 18px;
}

form button {
  background-color: #ff914d;
  color: #1e1e1e;
  padding: 16px;
  font-weight: bold;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.form-group {
  display: flex;
  flex-direction: column;
}
/* I used the W3 Schools for this part */
form input,
form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #555;
  background-color: #3b3b3b;
  color: #fff;
  font-size: 18px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #ff914d;
}

.required {
  color: #ff4d4d;
  font-weight: normal;
}

form button {
  align-self: flex-start;
}

