/* RESET */
* {
    box-sizing: border-box;
  }
  
  /* BODY */
  body {
    background: #e6e6e6;
    font-family: "Times New Roman", serif;
    padding: 0;              /* IMPORTANT: no padding */
    margin: 0;
  }
  
  /* FORM CONTAINER — HARD LOCK */
  #formArea {
    width: 780px;            /* SAFE WIDTH (NOT 794) */
    margin: 20px auto;
    background: #ffffff;
    padding: 15px;
    border: 1px solid #000;
    overflow: hidden;        /* CRITICAL */
  }
  
  /* HEADER */
  .header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
  }
  
  .logo {
    width: 75px;
    margin-right: 10px;
  }
  
  .company-text {
    text-align: center;
    flex: 1;
  }
  
  .company-text h2 {
    margin: 0;
    font-size: 19px;
  }
  
  .company-text h3 {
    margin: 2px 0;
    font-size: 14px;
  }
  
  .company-text h4 {
    margin-top: 4px;
    font-size: 13px;
    text-decoration: underline;
  }
  
  /* TABLES */
  .main-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;     /* LOCK CELLS */
    margin-top: 10px;
  }
  
  .main-table td {
    border: 1px solid #000;
    padding: 5px;
    font-size: 13px;
    vertical-align: middle;
    word-break: break-word;
  }
  
  /* INPUTS */
  input, textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 13px;
    background: transparent;
  }
  
  textarea {
    height: 42px;
    resize: none;
  }
  
  /* PHOTO */
  .photo-cell {
    width: 140px;
    text-align: center;
  }
  
  .photo-cell img {
    width: 120px;
    height: 140px;
    border: 1px solid #000;
    object-fit: cover;
    margin-bottom: 4px;
  }
  
  /* SECTION */
  .section-title {
    margin-top: 16px;
    font-size: 13px;
    text-decoration: underline;
  }
  
  /* DECLARATION */
  .declaration {
    margin-top: 16px;
    font-size: 13px;
  }
  
  /* SIGNATURE */
  .signature {
    width: 100%;
    margin-top: 26px;
  }
  
  .signature td {
    width: 50%;
    border-top: 1px solid #000;
    padding-top: 16px;
    font-size: 13px;
  }
  
  /* BUTTON */
  button {
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 15px;
    cursor: pointer;
  }
  
  
  body {
    font-family: Arial, sans-serif;
    background:#fff;
  }
  
  .header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  
  .logo {
    width: 120px;
  }
  
  .company-text {
    text-align: center;
    flex: 1;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  td, th {
    border: 1px solid #000;
    padding: 6px;
    font-size: 14px;
  }
  
  input, textarea {
    width: 100%;
    border: none;
    outline: none;
  }
  
  textarea {
    resize: none;
  }
  
  .photo-cell {
    text-align: center;
  }
  
  .section-title {
    margin-top: 20px;
    font-weight: bold;
  }
  