/* Base Reset and Font */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #e0f2f1, #f1f8e9);
  margin: 0;
  padding: 0px;
  color: #37474f;
  line-height: 1.6;
}

/* Card Component */
.card {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Input Fields */
.input-field input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.input-field input:focus {
  border-bottom: 2px solid #00796b !important;
  box-shadow: 0 2px 0 0 #00796b !important;
  outline: none;
}

/* Headings */
h5 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #455a64;
}

/* Voucher Container */
#voucher-container {
  display: none;
  margin-top: 20px;
  padding: 30px;
  border-radius: 1px;
  background: linear-gradient(to right, #b2ebf2, #b0bec5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

/* Voucher Box */
.voucher-box {
  border: 2px dashed #00796b;
  padding: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.voucher-box:hover {
  transform: scale(1.03);
}
.voucher-box h5 {
  font-size: 1.6rem;
  color: #004d40;
  margin-bottom: 12px;
}

/* Voucher Code */
#voucher-code {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00796b;
  margin-bottom: 20px;
}

/* QR Code */
.qr-code {
  margin-top: 10px;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
  .card, #voucher-container {
    padding: 12px;
    border-radius: 12px;
  }

  .voucher-box {
    padding: 20px;
  }

  #voucher-code {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 0;
  }
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(to right, #00796b, #004d40);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn:hover {
  background: linear-gradient(to right, #004d40, #00251a);
  transform: scale(1.05);
}

        
@media screen and (max-width:1215px){.container.is-widescreen:not(.is-max-desktop){max-width:1152px}}@media screen and (max-width:1407px){.container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}@media screen and (min-width:1216px){.container:not(.is-max-desktop){max-width:1152px}}@media screen and (min-width:1408px){.container:not(.is-max-desktop):not(.is-max-widescreen){max-width:1344px}}