body{
  font-family: Arial;
  text-align: center;
  margin: 20px;
}

/* FORM */
.form{
  max-width: 340px;
  margin: auto;
  text-align: left;
}

.form input{
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

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

button{
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  background: #013f04;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover{
  opacity: 0.9;
}

/* UPLOAD BUTTONS */
.upload-buttons{
  display: flex;
  gap: 10px;
}

.upload-buttons button{
  flex: 1;
}

/* IMAGE PREVIEW */
.preview{
  width: 120px;
  height: 140px;
  object-fit: cover;
  border: 2px solid #000;
  margin-top: 10px;
  border-radius: 6px;
  display: block;
}

/* SIGNATURE PAD */
.signature-container{
  border: 1px solid black;
  margin-top: 30px;
  border-radius: 6px;
  overflow: hidden;
}

#signaturePad{
  width: 100%;
  height: 120px;
  display: block;
}

/* CAMERA */
.camera-box{
  margin-top: 10px;
  text-align: center;
}

video{
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  border: 2px solid black;
  margin-top: 10px;
}

/* CARD AREA */
.cards{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* PVC CARD PORTRAIT SIZE */
.id-card{
  width: 54mm;
  height: 85.6mm;
  border: 1px solid black;
  border-radius: 3mm;
  padding: 2mm;

  background-image: url('id-bg.jpg');
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow: visible; /* CHANGED */
  box-sizing: border-box;
  position: relative;
}
/* FRONT CONTENT */
.card-content{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 1mm;
}

/* LOGO */
.logo{
  width: 14mm;
  margin-top: 1mm;
}

/* PHOTO */
.photo{
  width: 22mm;
  height: 26mm;
  object-fit: cover;
  border: 1px solid #000;
  border-radius: 2mm;
  margin-top: 2mm;
}

/* TEXT */
.field{
  width: 100%;
  text-align: center;
  font-size: 7px;
  line-height: 1.3;
  margin-top: 2mm;
  word-wrap: break-word;
}

/* SIGNATURE */
.signature{
  width: 28mm;
  height: 10mm;
  object-fit: contain;
  margin-top: auto;
}

/* BACK TEXT */
.placeholder{
  margin-top: 5mm;
  font-size: 9px;  /* CHANGED */
  text-align: center;
  line-height: 1.5;
  padding: 2mm;
  border-radius: 2mm;
}

/* AUTHORISED SIGNATURE */
.auth-signature{
  width: 25mm;
  height: 8mm;
  object-fit: contain;
  margin-top: 1mm;
  margin-bottom: 1mm;
}

.auth-label{
  font-size: 6px;
  font-weight: bold;
  margin-top: -1mm;
  margin-bottom: 2mm;
  text-align: center;
}

/* BARCODE */
#barcode{
  margin-top: auto;
  width: 90%;
  height: auto;
  background: transparent !important;
}

/* MOBILE */
@media(max-width:600px){
  .cards{
    flex-direction: column;
    align-items: center;
  }
}
