
      .pdf-form-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
      }
      .pdf-form-box {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        padding: 30px 40px;
        max-width: 500px;
        width: 100%;
        text-align: center;
      }
      .pdf-form-box h2 {
        margin-bottom: 20px;
      }
      .pdf-form-box input[type="text"],
      .pdf-form-box input[type="email"] {
        width: 100%;
        padding: 12px;
        margin-top: 5px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
      }
      .pdf-form-box button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 25px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
      }
      .pdf-form-box button:hover {
        background-color: #0056b3;
      }
      .back-link {
        display: inline-block;
        margin-top: 15px;
        text-decoration: none;
        color: #555;
      }
      .back-link:hover {
        text-decoration: underline;
      }
      label {
        font-weight: 600;
        display: block;
        text-align: left;
        margin-top: 5px;
      }
