/* General Reset and Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
}

header {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.logo {
  width: 150px;
  height: auto;
}

.container {
  max-width: 90%;
  width: 400px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  margin-top: 20px;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

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

input[type="file"] {
  display: none; /* Hide the default file input */
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
  background-color: #f7f7f7;
  transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #007bff;
  color: #fff;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

#qrcode {
  margin-top: 20px;
}

footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  color: #fff;
  margin-top: 20px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-top: 10px;
}

/* Media Query for smaller screens */
@media only screen and (max-width: 600px) {
  .container {
    width: 100%;
    padding: 10px;
  }

  .logo {
    width: 100px;
  }

  button {
    padding: 8px 16px;
  }

  .footer-logo {
    width: 80px;
  }
}