/* Reset some default styles for consistent rendering */
a {
    text-decoration: none;
    color: #007bff;
  } 
body, h1, h2, p, form, input, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Apply a background color and set text color */
  body {
    background-color: #f0f0f0;
    color: #333;
    text-align: center;
    padding: 20px;
  }
  
  /* Style the main heading */
  h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  /* Style the form */
  form {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Footer */
  footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1em 3em;
    margin: 0;
  }

  footer a {
    color: inherit;
    text-decoration-line: none;
  }

  /* Style form labels */
  label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
  }
  
  /* Style input fields */
  input[type="text"] {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  /* Style the submit button */
  button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  /* Style the QR code image */
  img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  