.form-container {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  /* border: 1px solid #000; */
  margin: auto;
  /* margin-top: 10%; */
  margin-top: 0px;
}

.menu-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="text"],
input[type="number"],
select,
textarea,
input[type="file"] {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: #28a745;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #218838;
}

.message {
  color: red;
  text-align: center;
  margin-bottom: 10px;
}
h4
{
    text-align: center;
    margin-top: 1%;
}
