/* Wrapper */
#pdfForm {
	margin: 0 auto;
    max-width: 420px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Labels */
#pdfForm label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

/* Inputs */
#pdfForm input {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.6rem 0.7rem;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

/* Focus state */
#pdfForm input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}

/* Button */
#pdfForm button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}

/* Button hover */
#pdfForm button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background-image: linear-gradient(
        135deg,
        rgb(6,147,227) 13%,
        rgb(49,204,100) 91%
    );
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}


/* Button active */
#pdfForm button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(6,147,227,.35);
}

#pdfForm button:active {
    transform: translateY(0);
    filter: brightness(0.95);
    box-shadow: 0 4px 12px rgba(49,204,100,.35);
}

/* Result message */
#pdfResult {
    margin: 1rem auto;
    max-width: 420px;
    font-size: 0.9rem;
}

/* Success / error (optional) */
#pdfResult.success {
    color: #065f46;
}

#pdfResult.error {
    color: #991b1b;
}
