/* custom-form-styles.css */

/* Form container */

/* Style the form container */
.custom-form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Style the form labels */
.custom-form-container label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Style the form input fields */
.custom-form-container input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Style the form submit button */
.custom-form-container input[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Style the form submit button on hover */
.custom-form-container input[type="submit"]:hover {
  background-color: #45a049;
}

/* Style form validation/error messages */
.custom-form-container .error-message {
  color: #ff0000;
  margin-top: 5px;
}
