    /* Center the Form and add a Card Style */
    .frame-type-form_formframework {
        max-width: 600px;        /* Restrict width so it's not full screen */
        margin: 60px auto;       /* Top/Bottom=60px, Left/Right=Auto (Centers it) */
        padding: 40px;           /* Add breathing room inside */
        background: #ffffff;     /* White background */
        border: 1px solid #ddd;  /* Subtle border */
        border-radius: 8px;      /* Rounded corners */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Soft shadow */
    }

    /* Make the submit button look professional */
    .frame-type-form_formframework button[type="submit"] {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        cursor: pointer;
        background-color: #333;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 16px;
    }
    
    /* Hover effect for button */
    .frame-type-form_formframework button[type="submit"]:hover {
        background-color: #555;
    }