Skip to content

Branding

Paylent hosts login, registration, and consent pages on your environment’s subdomain. Branding settings let you customize these pages to match your application’s design — colors, logo, layout, and more.

Branding is configured per environment. Open the Settings page in the dashboard and navigate to the Branding tab.

SettingOptionsDefaultDescription
Primary colorAny hex colorUsed for buttons, links, and accents
Logo URLURLDisplayed at the top of the login form
Dark modeOn / OffOffSwitches the color scheme to dark
LayoutCentered, Left, RightCenteredPosition of the login card on the page
Border radiusCSS value12pxCorner radius of the login card
Font familyAny web fontCustom font for the login pages
Button styleFilled, Outline, Rounded pillFilledStyle of the primary action buttons
Card shadowDefault, None, Soft, HeavyDefaultShadow intensity on the login card
Background typeGradient, Solid, ImageGradientType of page background
Background valueCSS gradient, color, or URLThe background value (depends on type)
Custom CSSCSS codeAdditional CSS injected into the page

Solid color:

  • Background type: solid
  • Background value: #1a1a2e

Gradient:

  • Background type: gradient
  • Background value: linear-gradient(135deg, #667eea 0%, #764ba2 100%)

Image:

  • Background type: image
  • Background value: https://example.com/background.jpg

The dashboard includes a live preview that updates as you change settings. The preview loads your environment’s actual login page in an iframe, so you see exactly what your users will see.

For advanced customization beyond the built-in settings, use the Custom CSS field to inject additional styles. The hosted pages use CSS variables that you can override:

/* Example: custom font import and override */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');
:root {
--font-family: 'Outfit', sans-serif;
}

Branding settings apply to all hosted authentication pages on your environment’s subdomain:

  • Login page (/login)
  • Registration pages (/register, /register/verify, /register/complete)
  • Consent screen (OAuth authorization prompt)
  • Onboarding page (/onboarding)

API responses, the management dashboard, and emails are not affected by branding settings.