/* Add padding and rounded corners around the entire form */
.pf-form {
    padding: 24px !important;        /* Adjust padding as needed */
    border-radius: 16px !important;  /* Rounded corners */
    box-shadow: 0 4px 16px rgba(0,0,0,0.08); /* Optional subtle shadow */
    overflow: hidden; /* Ensures the rounded corners display cleanly */

}

