.input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}
.input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 4px rgba(59,130,246,0.4);
}
.btn-blue {
  background-color: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-blue:hover {
  background-color: #1e40af;
}
.btn-green {
  background-color: #16a34a;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.2s;
}
.btn-green:hover {
  background-color: #15803d;
}
.cover-page {
  width: 210mm;
  height: 297mm;
  background: white;
  margin: 40px auto;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

@media print {
  body * {
    visibility: hidden;
  }
  #coverPage, #coverPage * {
    visibility: visible;
  }
  #coverPage {
    position: absolute;
    left: 0;
    top: 0;
    width: 210mm;
    height: 297mm;
    margin: 0;
    padding: 20mm 15mm;
    page-break-after: avoid;
    overflow: hidden;
    transform: scale(1.06);
    transform-origin: top left;
  }
  @page {
    size: A4;
    margin: 0;
  }
}
