/* Style the form container */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Style the form header */
.form-header {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: black;
}

/* Style the form input fields */
.form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Style the form submit button */
.form-submit {
  background-color: #4CAF50;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #3e8e41;
}

/* Style the form error message */
.form-error {
  color: red;
  margin-bottom: 10px;
}/* CSS Document */

