/* Custom CSS for Paperform - Lighter and Non-Italic Placeholder Text */
input::placeholder,
textarea::placeholder {
    color: #D3D3D3 !important; /* Very light grey for Placeholder Text */
    font-style: normal !important; /* Ensure placeholder text is not italic */
    opacity: 1; /* Ensures the placeholder text is fully opaque */
}

/* Optional: Change color of placeholder text on focus */
input:focus::placeholder,
textarea:focus::placeholder {
    color: #B0B0B0 !important; /* Slightly darker grey when focused */
}