.main_content_wrapper {
    font-family: Arial, sans-serif;
    padding: 2rem;
    background-color: #fdfaf6;
    display: flex;
    justify-content: center;
  }
  
  .form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
  }
  
  .main_content {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .divider {
    width: 60px;
    height: 2px;
    background-color: #8b5e3c;
    border: none;
    margin: 0.5rem auto 1rem auto;
  }
  
  form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
  }

  h2 {
    text-align: center;
    margin-bottom: 1rem;
  }

  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }

  textarea {
    resize: vertical;
    field-sizing: content;
  }

  input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .ingredients-group {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
  }

  .ingredients-group input {
    flex: 1;
  }

  button {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #8b5e3c;
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
  }

  button:hover {
    background-color: #a06c44;
  }