* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  position: relative;
  max-width: 600px;
  width: 100%;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Background Image */
.background-wrapper {
  position: relative;
  width: 100%;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Form Overlay - Positioned below price (Rp25.000) */
.form-overlay {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 350px;
  z-index: 10;
  padding: 15px;
}

/* Conditional positioning for Pondok Kacang */
.form-overlay.pondok-kacang-form {
  top: 72%; /* Adjust: lebih besar = lebih ke bawah */
}


.form-group {
  margin-bottom: 4px;
}

.form-label {
  display: block;
  color: #d32f2f;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #d32f2f;
}

.form-group input::placeholder {
  color: #999;
}

.error-message {
  display: block;
  color: #d32f2f;
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
  font-weight: 500;
}

.download-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.download-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.4);
}

.download-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

/* Voucher Overlay - Positioned at bottom (guide-2 position) */
.voucher-overlay {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  z-index: 10;
  padding: 25px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.voucher-content {
  display: flex;
  gap: 25px;
  align-items: center;
}

.qr-wrapper {
  flex-shrink: 0;
  background: #d32f2f;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-wrapper canvas,
.qr-wrapper img {
  display: block;
  background: white;
  padding: 8px;
  border-radius: 4px;
}

.voucher-details {
  flex: 1;
  text-align : center;
}

.voucher-number {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.voucher-phone {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.voucher-date {
  font-size: 13px;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-overlay {
    top: 65%;
    width: 85%;
    padding: 14px;
  }

 /* Pondok Kacang positioning for tablet */
  .form-overlay.pondok-kacang-form {
    top: 68%; /* Adjust untuk tablet */
  }


  .form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .download-btn {
    padding: 11px;
    font-size: 14px;
  }

  .voucher-overlay {
    bottom: 60px;
    width: 88%;
    padding: 18px;
  }

  .voucher-content {
    gap: 18px;
  }

  .qr-wrapper {
    padding: 12px;
  }

  .voucher-phone {
    font-size: 16px;
    padding: 9px 22px;
  }
}

@media (max-width: 480px) {
  .form-overlay {
    top: 64%;
    height: 75%;
    width: 75%;
    max-width: 280px;
    padding: 8px;
  }

/* Pondok Kacang positioning for mobile */
  .form-overlay.pondok-kacang-form {
    top: 73%; /* Adjust untuk mobile */
  }

  .form-label {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .form-group {
    margin-bottom: 2px;
  }

  .form-group input {
    padding: 4px 10px;
    font-size: 12px;
  }

  .download-btn {
    padding: 7px;
    font-size: 13px;
    margin-top:-7px; 
  }

  .voucher-overlay {
    bottom: 70px;
    padding: 12px;
    width: 85%;
  }

  .voucher-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .qr-wrapper {
    padding: 10px;
  }

  .voucher-number {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .voucher-phone {
    font-size: 15px;
    padding: 8px 20px;
  }
}

/* Adjust for very small screens */
@media (max-width: 360px) {
  .form-overlay {
    top: 46%;
    padding: 12px;
  }

  .voucher-overlay {
    bottom: 40px;
  }
}
