/*body {
  font-family: sans-serif;
  background: #fff;
  color: #333;
}*/

.form-wrapper {
  max-width: 880px;
  border: 1px solid #ccc;
  padding: 20px;
  background: #f8f8f8;
}

h2.form {
  margin-top: 0;
  font-weight: normal;
  color: #444;
}

form label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

     input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 3px;
        font-size: 14px;
    }

textarea {
  resize: vertical;
}

.form-footer {
  font-size: 12px;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-footer a {
  color: #007bff;
  text-decoration: none;
}

.button-container {
  text-align: right;
  margin-top: 10px;
}

button {
  background: #222;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

button:hover {
  background: #000;
}
