body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0; /* Set the body background color */
}

.container {
  text-align: center;
}

.logo img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
  
}

.content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.qrcode img {
  width: 120px; /* Set the QR code width */
  height: 120px; /* Set the QR code height */
  display: block;
}

.qr-text {
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.login-button {
  /* Styling for the "Employee Login" button */
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background-color: #007BFF;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
}

a.login-button:hover {
  background-color: #0056b3;
}
