* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      width: 100%;
      height: 100%;
      font-family: 'Roboto', sans-serif;
      overflow: hidden; /* prevent scroll */
      background: #282828;
    }

    .a4-sheet {
      width: 100%;
      height: 100%;
      background: #282828;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }

    .id-card {
      width: 8.5cm;
      height: 11.5cm;
      background: #fff;
      position: relative;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      font-size: 0.75rem;
    }

    .id-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 30%, #ccc, #fff 60%);
      z-index: 1;
    }

    .cross-lines {
      position: absolute;
      top: 25px;
      left: 20px;
      z-index: 2;
    }

    .cross-lines::before,
    .cross-lines::after {
      content: '';
      position: absolute;
      background: #b6b6b7;
    }

    .cross-lines::before {
      width: 3px;
      height: 220px;
      top: -18px;
      left: 0;
    }

    .cross-lines::after {
      width: 100px;
      height: 3px;
      top: 0;
      left: -10px;
    }

    .photo-wrapper {
      position: absolute;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 130px;
    }

    .photo-wrapper::after {
      content: '';
      position: absolute;
      /* width: 100%;
      height: 100%; */
      width: 150px;
      height: 170px;
      background: #36405b;
      top: 20px;
      left: 25px;
      z-index: -1;
    }

    .photo-wrapper img {
      width: 150px;
      height: 170px;
      border: 1px solid #333;
      display: block;
    }

    .info {
      position: absolute;
      top: 250px;
      width: 100%;
      text-align: center;
      padding: 0 8px;
      z-index: 4;
    }

    .info h2 {
      margin: 5px 0 2px;
      font-size: 18px;
      color: #36405b;
    }

    .info p {
      margin: 2px 0;
      font-size: 14px;
      color: #545454;
      font-weight: 500;
      word-break: break-word;
      justify-items: center;
    }

    .info p strong {
      font-weight: 700;
    }

    .footer {
      position: absolute;
      bottom: 0;
      height: 60px;
      width: 100%;
      background: #939394;
      color: #fff;
      text-align: center;
      padding: 6px 5px;
      font-size: 9px;
      z-index: 3;
    }

    .footer .brand {
      font-size: 15px;
      font-weight: bold;
    }

    .footer .tagline {
      font-size: 15px;
      color: #ccc;
      margin-top: 2px;
    }
    .footer .tagline .o {
      color: red;
    }
    .verified-icon {
      width: 15px;
      height: 15px;
      vertical-align: middle;
      margin-left: 5px;
    }
    .verified {
      color: green;
    }
