
body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #eae8f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.input {
  width: 60%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 45px;
  letter-spacing: 5px;
  color: rgb(87, 87, 105);
}

.input_section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 10px 5px;
  border: solid 2px rgb(150, 150, 150);
  border-radius: 18px;
  transition: 0.5s;
}

.input_section:hover {
  box-shadow: 4px 7px 27px -12px rgba(0, 0, 0, 0.46);
}

input {
  background: none;
  padding: 5px;
  display: block;
  font-size: 20px;
  font-family: sans-serif;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  width: 80%;
}

.input_section button {
  font-size: 20px;
  background-color: #ffd414;
  color: #302b2a;
  border: none;
  outline: none;
  border-radius: 13px;
  padding: 12px 17px;
  cursor: pointer;
}

/* ===== QR Code Section ===== */
.qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(74, 74, 94);
  border-radius: 15px;
  padding: 2rem;
  width: 300px;
  min-height: 350px;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.qr-code canvas {
  background-color: white;
  padding: 10px;
  border-radius: 12px;
  width: 256px !important;
  height: 256px !important;
}

/* ===== Download Button ===== */
.qr-code button {
  margin-top: 2rem;
  background-color: #ffd414;
  border: none;
  border-radius: 1rem;
  width: 100%;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code button a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  color: #302b2a;
  width: 100%;
  text-align: center;
}