body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    background-image: url('./background.png');
    background-size: contain; 
    background-position: center; 
    background-repeat: no-repeat; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
  }

  .container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
	max-height: 500px;
    width: 100%;
	height: 100%;
    text-align: center;
  }

  input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 120px;
    width: 100%;
    box-sizing: border-box;
  }

  #qrcode {
    margin: 0 auto; /* Center horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Set a fixed width or adjust as needed */
    height: 100px; /* Set a fixed height or adjust as needed */
   
  }
  button {
	margin-top: 120px; /* Adjust space between QR code and button */
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;

  }
   .error-message {
    color: red;
  }

  /* Footer styles */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer a {
  color: #fff; /* Set hyperlink color to white */
  text-decoration: none; /* Remove underline */
}

.footer a:hover {
  text-decoration: underline; /* Add underline on hover */
}
