form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  /* Style the form labels */
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  /* Style the form inputs */
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
  }
  
  /* Style the submit button */
  button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
  
  /* Optional: Style the form error messages */
  .error {
    color: red;
    font-size: 14px;
  }
  .mt-5{
    background-color: rgba(0, 0, 0, 0.556);
    border-radius: 5px;
    color: #fff;
  }