body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  padding: 20px;
}

.container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-section {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
form input {
  width: 100%;
  margin-top: 2px;
  padding: 6px;
}
form button {
  margin-top: 15px;
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.preview-section {
  flex: 1;
  min-width: 300px;
}

.id-card {
  width: 300px;
  height: auto;
  background: white;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.photo {
  width: 100px;
  height: 120px;
  object-fit: cover;
  margin: 10px auto;
  border: 2px solid #000;
}
.photo.square {
  border-radius: 0;
}

.company-name {
  font-weight: bold;
  font-size: 16px;
}
.tagline {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.info {
  margin-top: 10px;
}
.emp-name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
}

.address, .instructions {
  font-size: 13px;
  margin: 5px 0;
  text-align: left;
}
.instructions ul {
  padding-left: 20px;
  font-size: 12px;
}
.instructions strong {
  display: block;
  margin-bottom: 5px;
}

.signature {
  width: 80px;
  height: 30px;
  object-fit: contain;
  margin-top: 5px;
}

.signatures {
  margin-top: 10px;
  font-size: 12px;
}

.qr {
  width: 80px;
  height: 80px;
  margin-top: 10px;
}
