authhero 0.205.0 → 0.207.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14539,6 +14539,330 @@ export declare const roleListSchema: z.ZodArray<z.ZodObject<{
14539
14539
  updated_at?: string | undefined;
14540
14540
  }>, "many">;
14541
14541
  export type RoleList = z.infer<typeof roleListSchema>;
14542
+ export declare const organizationBrandingSchema: z.ZodOptional<z.ZodObject<{
14543
+ logo_url: z.ZodOptional<z.ZodString>;
14544
+ colors: z.ZodOptional<z.ZodObject<{
14545
+ primary: z.ZodOptional<z.ZodString>;
14546
+ page_background: z.ZodOptional<z.ZodString>;
14547
+ }, "strip", z.ZodTypeAny, {
14548
+ primary?: string | undefined;
14549
+ page_background?: string | undefined;
14550
+ }, {
14551
+ primary?: string | undefined;
14552
+ page_background?: string | undefined;
14553
+ }>>;
14554
+ }, "strip", z.ZodTypeAny, {
14555
+ colors?: {
14556
+ primary?: string | undefined;
14557
+ page_background?: string | undefined;
14558
+ } | undefined;
14559
+ logo_url?: string | undefined;
14560
+ }, {
14561
+ colors?: {
14562
+ primary?: string | undefined;
14563
+ page_background?: string | undefined;
14564
+ } | undefined;
14565
+ logo_url?: string | undefined;
14566
+ }>>;
14567
+ export declare const organizationEnabledConnectionSchema: z.ZodObject<{
14568
+ connection_id: z.ZodString;
14569
+ assign_membership_on_login: z.ZodDefault<z.ZodBoolean>;
14570
+ show_as_button: z.ZodDefault<z.ZodBoolean>;
14571
+ is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
14572
+ }, "strip", z.ZodTypeAny, {
14573
+ connection_id: string;
14574
+ assign_membership_on_login: boolean;
14575
+ show_as_button: boolean;
14576
+ is_signup_enabled: boolean;
14577
+ }, {
14578
+ connection_id: string;
14579
+ assign_membership_on_login?: boolean | undefined;
14580
+ show_as_button?: boolean | undefined;
14581
+ is_signup_enabled?: boolean | undefined;
14582
+ }>;
14583
+ export declare const organizationTokenQuotaSchema: z.ZodOptional<z.ZodObject<{
14584
+ client_credentials: z.ZodOptional<z.ZodObject<{
14585
+ enforce: z.ZodDefault<z.ZodBoolean>;
14586
+ per_day: z.ZodDefault<z.ZodNumber>;
14587
+ per_hour: z.ZodDefault<z.ZodNumber>;
14588
+ }, "strip", z.ZodTypeAny, {
14589
+ enforce: boolean;
14590
+ per_day: number;
14591
+ per_hour: number;
14592
+ }, {
14593
+ enforce?: boolean | undefined;
14594
+ per_day?: number | undefined;
14595
+ per_hour?: number | undefined;
14596
+ }>>;
14597
+ }, "strip", z.ZodTypeAny, {
14598
+ client_credentials?: {
14599
+ enforce: boolean;
14600
+ per_day: number;
14601
+ per_hour: number;
14602
+ } | undefined;
14603
+ }, {
14604
+ client_credentials?: {
14605
+ enforce?: boolean | undefined;
14606
+ per_day?: number | undefined;
14607
+ per_hour?: number | undefined;
14608
+ } | undefined;
14609
+ }>>;
14610
+ export declare const organizationInsertSchema: z.ZodObject<{
14611
+ id: z.ZodOptional<z.ZodString>;
14612
+ name: z.ZodString;
14613
+ display_name: z.ZodOptional<z.ZodString>;
14614
+ branding: z.ZodOptional<z.ZodObject<{
14615
+ logo_url: z.ZodOptional<z.ZodString>;
14616
+ colors: z.ZodOptional<z.ZodObject<{
14617
+ primary: z.ZodOptional<z.ZodString>;
14618
+ page_background: z.ZodOptional<z.ZodString>;
14619
+ }, "strip", z.ZodTypeAny, {
14620
+ primary?: string | undefined;
14621
+ page_background?: string | undefined;
14622
+ }, {
14623
+ primary?: string | undefined;
14624
+ page_background?: string | undefined;
14625
+ }>>;
14626
+ }, "strip", z.ZodTypeAny, {
14627
+ colors?: {
14628
+ primary?: string | undefined;
14629
+ page_background?: string | undefined;
14630
+ } | undefined;
14631
+ logo_url?: string | undefined;
14632
+ }, {
14633
+ colors?: {
14634
+ primary?: string | undefined;
14635
+ page_background?: string | undefined;
14636
+ } | undefined;
14637
+ logo_url?: string | undefined;
14638
+ }>>;
14639
+ metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
14640
+ enabled_connections: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
14641
+ connection_id: z.ZodString;
14642
+ assign_membership_on_login: z.ZodDefault<z.ZodBoolean>;
14643
+ show_as_button: z.ZodDefault<z.ZodBoolean>;
14644
+ is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
14645
+ }, "strip", z.ZodTypeAny, {
14646
+ connection_id: string;
14647
+ assign_membership_on_login: boolean;
14648
+ show_as_button: boolean;
14649
+ is_signup_enabled: boolean;
14650
+ }, {
14651
+ connection_id: string;
14652
+ assign_membership_on_login?: boolean | undefined;
14653
+ show_as_button?: boolean | undefined;
14654
+ is_signup_enabled?: boolean | undefined;
14655
+ }>, "many">>>;
14656
+ token_quota: z.ZodOptional<z.ZodObject<{
14657
+ client_credentials: z.ZodOptional<z.ZodObject<{
14658
+ enforce: z.ZodDefault<z.ZodBoolean>;
14659
+ per_day: z.ZodDefault<z.ZodNumber>;
14660
+ per_hour: z.ZodDefault<z.ZodNumber>;
14661
+ }, "strip", z.ZodTypeAny, {
14662
+ enforce: boolean;
14663
+ per_day: number;
14664
+ per_hour: number;
14665
+ }, {
14666
+ enforce?: boolean | undefined;
14667
+ per_day?: number | undefined;
14668
+ per_hour?: number | undefined;
14669
+ }>>;
14670
+ }, "strip", z.ZodTypeAny, {
14671
+ client_credentials?: {
14672
+ enforce: boolean;
14673
+ per_day: number;
14674
+ per_hour: number;
14675
+ } | undefined;
14676
+ }, {
14677
+ client_credentials?: {
14678
+ enforce?: boolean | undefined;
14679
+ per_day?: number | undefined;
14680
+ per_hour?: number | undefined;
14681
+ } | undefined;
14682
+ }>>;
14683
+ }, "strip", z.ZodTypeAny, {
14684
+ name: string;
14685
+ id?: string | undefined;
14686
+ display_name?: string | undefined;
14687
+ branding?: {
14688
+ colors?: {
14689
+ primary?: string | undefined;
14690
+ page_background?: string | undefined;
14691
+ } | undefined;
14692
+ logo_url?: string | undefined;
14693
+ } | undefined;
14694
+ metadata?: Record<string, any> | undefined;
14695
+ enabled_connections?: {
14696
+ connection_id: string;
14697
+ assign_membership_on_login: boolean;
14698
+ show_as_button: boolean;
14699
+ is_signup_enabled: boolean;
14700
+ }[] | undefined;
14701
+ token_quota?: {
14702
+ client_credentials?: {
14703
+ enforce: boolean;
14704
+ per_day: number;
14705
+ per_hour: number;
14706
+ } | undefined;
14707
+ } | undefined;
14708
+ }, {
14709
+ name: string;
14710
+ id?: string | undefined;
14711
+ display_name?: string | undefined;
14712
+ branding?: {
14713
+ colors?: {
14714
+ primary?: string | undefined;
14715
+ page_background?: string | undefined;
14716
+ } | undefined;
14717
+ logo_url?: string | undefined;
14718
+ } | undefined;
14719
+ metadata?: Record<string, any> | undefined;
14720
+ enabled_connections?: {
14721
+ connection_id: string;
14722
+ assign_membership_on_login?: boolean | undefined;
14723
+ show_as_button?: boolean | undefined;
14724
+ is_signup_enabled?: boolean | undefined;
14725
+ }[] | undefined;
14726
+ token_quota?: {
14727
+ client_credentials?: {
14728
+ enforce?: boolean | undefined;
14729
+ per_day?: number | undefined;
14730
+ per_hour?: number | undefined;
14731
+ } | undefined;
14732
+ } | undefined;
14733
+ }>;
14734
+ export type OrganizationInsert = z.infer<typeof organizationInsertSchema>;
14735
+ export declare const organizationSchema: z.ZodObject<{
14736
+ id: z.ZodString;
14737
+ created_at: z.ZodString;
14738
+ updated_at: z.ZodString;
14739
+ name: z.ZodString;
14740
+ display_name: z.ZodOptional<z.ZodString>;
14741
+ branding: z.ZodOptional<z.ZodObject<{
14742
+ logo_url: z.ZodOptional<z.ZodString>;
14743
+ colors: z.ZodOptional<z.ZodObject<{
14744
+ primary: z.ZodOptional<z.ZodString>;
14745
+ page_background: z.ZodOptional<z.ZodString>;
14746
+ }, "strip", z.ZodTypeAny, {
14747
+ primary?: string | undefined;
14748
+ page_background?: string | undefined;
14749
+ }, {
14750
+ primary?: string | undefined;
14751
+ page_background?: string | undefined;
14752
+ }>>;
14753
+ }, "strip", z.ZodTypeAny, {
14754
+ colors?: {
14755
+ primary?: string | undefined;
14756
+ page_background?: string | undefined;
14757
+ } | undefined;
14758
+ logo_url?: string | undefined;
14759
+ }, {
14760
+ colors?: {
14761
+ primary?: string | undefined;
14762
+ page_background?: string | undefined;
14763
+ } | undefined;
14764
+ logo_url?: string | undefined;
14765
+ }>>;
14766
+ metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
14767
+ enabled_connections: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
14768
+ connection_id: z.ZodString;
14769
+ assign_membership_on_login: z.ZodDefault<z.ZodBoolean>;
14770
+ show_as_button: z.ZodDefault<z.ZodBoolean>;
14771
+ is_signup_enabled: z.ZodDefault<z.ZodBoolean>;
14772
+ }, "strip", z.ZodTypeAny, {
14773
+ connection_id: string;
14774
+ assign_membership_on_login: boolean;
14775
+ show_as_button: boolean;
14776
+ is_signup_enabled: boolean;
14777
+ }, {
14778
+ connection_id: string;
14779
+ assign_membership_on_login?: boolean | undefined;
14780
+ show_as_button?: boolean | undefined;
14781
+ is_signup_enabled?: boolean | undefined;
14782
+ }>, "many">>>;
14783
+ token_quota: z.ZodOptional<z.ZodObject<{
14784
+ client_credentials: z.ZodOptional<z.ZodObject<{
14785
+ enforce: z.ZodDefault<z.ZodBoolean>;
14786
+ per_day: z.ZodDefault<z.ZodNumber>;
14787
+ per_hour: z.ZodDefault<z.ZodNumber>;
14788
+ }, "strip", z.ZodTypeAny, {
14789
+ enforce: boolean;
14790
+ per_day: number;
14791
+ per_hour: number;
14792
+ }, {
14793
+ enforce?: boolean | undefined;
14794
+ per_day?: number | undefined;
14795
+ per_hour?: number | undefined;
14796
+ }>>;
14797
+ }, "strip", z.ZodTypeAny, {
14798
+ client_credentials?: {
14799
+ enforce: boolean;
14800
+ per_day: number;
14801
+ per_hour: number;
14802
+ } | undefined;
14803
+ }, {
14804
+ client_credentials?: {
14805
+ enforce?: boolean | undefined;
14806
+ per_day?: number | undefined;
14807
+ per_hour?: number | undefined;
14808
+ } | undefined;
14809
+ }>>;
14810
+ }, "strip", z.ZodTypeAny, {
14811
+ created_at: string;
14812
+ updated_at: string;
14813
+ name: string;
14814
+ id: string;
14815
+ display_name?: string | undefined;
14816
+ branding?: {
14817
+ colors?: {
14818
+ primary?: string | undefined;
14819
+ page_background?: string | undefined;
14820
+ } | undefined;
14821
+ logo_url?: string | undefined;
14822
+ } | undefined;
14823
+ metadata?: Record<string, any> | undefined;
14824
+ enabled_connections?: {
14825
+ connection_id: string;
14826
+ assign_membership_on_login: boolean;
14827
+ show_as_button: boolean;
14828
+ is_signup_enabled: boolean;
14829
+ }[] | undefined;
14830
+ token_quota?: {
14831
+ client_credentials?: {
14832
+ enforce: boolean;
14833
+ per_day: number;
14834
+ per_hour: number;
14835
+ } | undefined;
14836
+ } | undefined;
14837
+ }, {
14838
+ created_at: string;
14839
+ updated_at: string;
14840
+ name: string;
14841
+ id: string;
14842
+ display_name?: string | undefined;
14843
+ branding?: {
14844
+ colors?: {
14845
+ primary?: string | undefined;
14846
+ page_background?: string | undefined;
14847
+ } | undefined;
14848
+ logo_url?: string | undefined;
14849
+ } | undefined;
14850
+ metadata?: Record<string, any> | undefined;
14851
+ enabled_connections?: {
14852
+ connection_id: string;
14853
+ assign_membership_on_login?: boolean | undefined;
14854
+ show_as_button?: boolean | undefined;
14855
+ is_signup_enabled?: boolean | undefined;
14856
+ }[] | undefined;
14857
+ token_quota?: {
14858
+ client_credentials?: {
14859
+ enforce?: boolean | undefined;
14860
+ per_day?: number | undefined;
14861
+ per_hour?: number | undefined;
14862
+ } | undefined;
14863
+ } | undefined;
14864
+ }>;
14865
+ export type Organization = z.infer<typeof organizationSchema>;
14542
14866
  export declare function parseUserId(user_id: string): {
14543
14867
  connection: string;
14544
14868
  id: string;
@@ -14768,6 +15092,16 @@ export interface UserRolesAdapter {
14768
15092
  assign(tenantId: string, userId: string, roles: string[]): Promise<boolean>;
14769
15093
  remove(tenantId: string, userId: string, roles: string[]): Promise<boolean>;
14770
15094
  }
15095
+ export interface ListOrganizationsResponse extends Totals {
15096
+ organizations: Organization[];
15097
+ }
15098
+ export interface OrganizationsAdapter {
15099
+ create(tenant_id: string, params: OrganizationInsert): Promise<Organization>;
15100
+ get(tenant_id: string, id: string): Promise<Organization | null>;
15101
+ remove(tenant_id: string, id: string): Promise<boolean>;
15102
+ list(tenant_id: string, params?: ListParams): Promise<ListOrganizationsResponse>;
15103
+ update(tenant_id: string, id: string, params: Partial<OrganizationInsert>): Promise<boolean>;
15104
+ }
14771
15105
  export interface DataAdapters {
14772
15106
  applications: ApplicationsAdapter;
14773
15107
  branding: BrandingAdapter;
@@ -14794,6 +15128,7 @@ export interface DataAdapters {
14794
15128
  themes: ThemesAdapter;
14795
15129
  users: UserDataAdapter;
14796
15130
  userRoles: UserRolesAdapter;
15131
+ organizations: OrganizationsAdapter;
14797
15132
  }
14798
15133
  declare const auth0ClientSchema: z.ZodObject<{
14799
15134
  name: z.ZodString;
@@ -15067,8 +15402,9 @@ type Props$5 = {
15067
15402
  export declare const EnterPasswordPage: FC<Props$5>;
15068
15403
  type Props$6 = {
15069
15404
  children: string;
15405
+ className?: string;
15070
15406
  };
15071
- export declare const ErrorMessage: ({ children }: Props$6) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
15407
+ export declare const ErrorMessage: ({ children, className }: Props$6) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
15072
15408
  type Props$7 = {
15073
15409
  theme: Theme | null;
15074
15410
  branding: Branding | null;
@@ -15203,7 +15539,7 @@ declare const UserNotFound: FC<Props$21>;
15203
15539
  export declare const VippsLogo: ({ ...props }: {
15204
15540
  [x: string]: any;
15205
15541
  }) => import("hono/jsx/jsx-dev-runtime").JSX.Element;
15206
- export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}\n\n/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-1\\/2{top:50%}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mt-1{margin-top:.25rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.\\!hidden{display:none!important}.hidden{display:none}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.w-10{width:2.5rem}.w-5{width:1.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.max-w-\\[1295px\\]{max-width:1295px}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.rounded-2xl{border-radius:1.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-none{border-style:none}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-0{padding:0}.p-4{padding:1rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-medium{font-weight:500}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-\\[0\\]{line-height:0}.leading-tight{line-height:1.25}.text-\\[\\#1196F5\\]{--tw-text-opacity:1;color:rgb(17 150 245/var(--tw-text-opacity))}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(40 40 52/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.placeholder-gray-400::-moz-placeholder{--tw-placeholder-opacity:1;color:rgb(75 74 88/var(--tw-placeholder-opacity))}.placeholder-gray-400::placeholder{--tw-placeholder-opacity:1;color:rgb(75 74 88/var(--tw-placeholder-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.row-up-left{align-content:flex-start;justify-content:flex-start}.row,.row-up-left{display:flex;flex-direction:row;flex-wrap:wrap}.row{align-content:center;align-items:center;justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-1:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-1:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}.short\\:text-xl{font-size:1.25rem;line-height:120%}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
15542
+ export declare const tailwindCss = "\n@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:400;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Regular.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:500;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Medium.woff2) format(\"woff2\")}@font-face{font-display:swap;font-family:KHTeka;font-style:normal;font-weight:600;src:url(https://assets.sesamy.com/fonts/khteka/WOFF2/KHTeka-Bold.woff2) format(\"woff2\")}@font-face{font-family:uicon;src:url(https://login2.sesamy.com/_next/static/media/uicon.0b00e08a.woff2)}[class*=\" uicon-\"],[class^=uicon-]{font-family:uicon!important;font-size:inherit;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.uicon-apple:before{content:\"\\ea01\"}.uicon-arrow-down:before{content:\"\\ea02\"}.uicon-arrow-left:before{content:\"\\ea03\"}.uicon-arrow-right:before{content:\"\\ea04\"}.uicon-arrow-up:before{content:\"\\ea05\"}.uicon-facebook:before{content:\"\\ea06\"}.uicon-google:before{content:\"\\ea07\"}.uicon-info-bubble:before{content:\"\\ea08\"}.uicon-info:before{content:\"\\ea09\"}.uicon-sesamy:before{content:\"\\ea0a\"}.uicon-spinner-circle:before{content:\"\\ea0b\"}.uicon-spinner-inner:before{content:\"\\ea0c\"}\n\n/*! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #bfbcd7;box-sizing:border-box}:after,:before{--tw-content:\"\"}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:KHTeka,Helvetica Neue,HelveticaNeue,TeX Gyre Heros,TeXGyreHeros,FreeSans,Nimbus Sans L,Liberation Sans,Arimo,Helvetica,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#4b4a58;opacity:1}input::placeholder,textarea::placeholder{color:#4b4a58;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}body,html{height:100%}body{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity));font-size:1rem;letter-spacing:.0125rem;line-height:120%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:1280px){body{font-size:1.125rem;line-height:120%}}:is(.dark body){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}button,input,optgroup,select,textarea{font-size:.875rem;letter-spacing:.0125rem;line-height:120%}@media (min-width:1280px){button,input,optgroup,select,textarea{font-size:1rem;line-height:120%}}h1{font-size:1.5rem;font-weight:500;line-height:120%}@media (min-width:1280px){h1{font-size:2rem;line-height:120%}}@media (min-width:640px){h1{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}@media (min-width:1280px){h1{font-size:3.5rem;letter-spacing:-.0625rem;line-height:100%}}h2{font-size:1.25rem;font-weight:500;line-height:120%}@media (min-width:1280px){h2{font-size:1.5rem;line-height:120%}}@media (min-width:640px){h2{font-size:2rem;letter-spacing:0;line-height:120%}}@media (min-width:1280px){h2{font-size:3rem;letter-spacing:-.0625rem;line-height:100%}}h3{font-size:1.125rem;font-weight:500;line-height:120%}@media (min-width:1280px){h3{font-size:1.25rem;line-height:120%}}@media (min-width:640px){h3{font-size:1.5rem;line-height:120%}}@media (min-width:1280px){h3{font-size:2rem;line-height:120%}}h4{font-size:1rem;font-weight:500;line-height:120%}@media (min-width:1280px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:640px){h4{font-size:1.125rem;line-height:120%}}@media (min-width:1280px){h4{font-size:1.5rem;line-height:120%}}h5{font-size:.875rem;font-weight:500;line-height:120%}@media (min-width:1280px){h5{font-size:1rem;line-height:120%}}@media (min-width:640px){h5{font-size:1rem;line-height:120%}}@media (min-width:1280px){h5{font-size:1.125rem;line-height:120%}}h6{font-size:.75rem;font-weight:500;line-height:135%}@media (min-width:1280px){h6{font-size:.875rem;line-height:120%}}@media (min-width:640px){h6{font-size:.875rem;line-height:120%}}@media (min-width:1280px){h6{font-size:1rem;line-height:120%}}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1920px){.container{max-width:1920px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-0{left:0}.right-0{right:0}.top-0{top:0}.top-1\\/2{top:50%}.my-4{margin-bottom:1rem;margin-top:1rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-7{margin-bottom:1.75rem}.mb-8{margin-bottom:2rem}.mr-1{margin-right:.25rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.line-clamp-1{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.\\!hidden{display:none!important}.hidden{display:none}.h-5{height:1.25rem}.h-9{height:2.25rem}.h-full{height:100%}.max-h-full{max-height:100%}.min-h-\\[calc\\(100vh-83px\\)\\]{min-height:calc(100vh - 83px)}.min-h-full{min-height:100%}.w-10{width:2.5rem}.w-5{width:1.25rem}.w-\\[calc\\(100\\%-theme\\(space\\.2\\)-theme\\(space\\.2\\)\\)\\]{width:calc(100% - 1rem)}.w-full{width:100%}.max-w-\\[1295px\\]{max-width:1295px}.max-w-none{max-width:none}.flex-1{flex:1 1 0%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.flex-col{flex-direction:column}.\\!flex-nowrap{flex-wrap:nowrap!important}.items-center{align-items:center}.justify-center{justify-content:center}.\\!justify-between{justify-content:space-between!important}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.5rem*var(--tw-space-x-reverse))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.5rem*var(--tw-space-y-reverse));margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1.5rem*var(--tw-space-y-reverse));margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.break-all{word-break:break-all}.rounded-2xl{border-radius:1.25rem}.rounded-lg{border-radius:.625rem}.rounded-md{border-radius:.375rem}.rounded-r-lg{border-bottom-right-radius:.625rem;border-top-right-radius:.625rem}.border{border-width:1px}.border-y{border-top-width:1px}.border-b,.border-y{border-bottom-width:1px}.border-t{border-top-width:1px}.border-gray-100{--tw-border-opacity:1;border-color:rgb(248 249 251/var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(191 188 215/var(--tw-border-opacity))}.border-gray-200\\/50{border-color:rgba(191,188,215,.5)}.border-gray-300{--tw-border-opacity:1;border-color:rgb(136 134 159/var(--tw-border-opacity))}.border-gray-500{--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}.border-red{--tw-border-opacity:1;border-color:rgb(252 90 90/var(--tw-border-opacity))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.bg-gray-200\\/40{background-color:rgba(191,188,215,.4)}.bg-primary{background-color:var(--primary-color)}.bg-primaryHover{background-color:var(--primary-hover)}.bg-red\\/80{background-color:rgba(252,90,90,.8)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.p-2{padding:.5rem}.p-4{padding:1rem}.px-0{padding-left:0;padding-right:0}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pb-2{padding-bottom:.5rem}.pb-8{padding-bottom:2rem}.pt-2{padding-top:.5rem}.pt-2\\.5{padding-top:.625rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.indent-\\[5px\\]{text-indent:5px}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.\\!text-base{font-size:1rem!important;line-height:120%!important}.\\!text-xs{font-size:.75rem!important;line-height:135%!important}.text-2xl{font-size:1.5rem;line-height:120%}.text-3xl{font-size:2rem;line-height:120%}.text-base{font-size:1rem;line-height:120%}.text-lg{font-size:1.125rem;line-height:120%}.text-sm{font-size:.875rem;line-height:120%}.text-xl{font-size:1.25rem;line-height:120%}.text-xs{font-size:.75rem;line-height:135%}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-\\[0\\]{line-height:0}.leading-tight{line-height:1.25}.text-\\[\\#1196F5\\]{--tw-text-opacity:1;color:rgb(17 150 245/var(--tw-text-opacity))}.text-\\[\\#B2B2B2\\]{--tw-text-opacity:1;color:rgb(178 178 178/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity:1;color:rgb(191 188 215/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(75 74 88/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(59 57 70/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(30 30 39/var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(20 20 26/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(8 8 14/var(--tw-text-opacity))}.text-green{--tw-text-opacity:1;color:rgb(54 191 118/var(--tw-text-opacity))}.text-primary{color:var(--primary-color)}.text-red{--tw-text-opacity:1;color:rgb(252 90 90/var(--tw-text-opacity))}.text-textOnPrimary{color:var(--text-on-primary)}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.accent-\\[\\#4F2D7F\\]{accent-color:#4f2d7f}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.row-up-left{align-content:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.row-left{justify-content:flex-start}.row,.row-left{align-content:center;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap}.row{justify-content:center}.column-left{align-items:flex-start}.column,.column-left{display:flex;flex-direction:column;justify-content:center}.column{align-items:center}@media (min-width:1280px){.text-5xl{font-size:5.125rem;letter-spacing:-.125rem;line-height:100%}.text-4xl{font-size:3.5rem}.text-3xl,.text-4xl{letter-spacing:-.0625rem;line-height:100%}.text-3xl{font-size:3rem}.text-2xl{font-size:2rem}.text-2xl,.text-xl{line-height:120%}.text-xl{font-size:1.5rem}.text-lg{font-size:1.25rem}.text-base,.text-lg{line-height:120%}.text-base{font-size:1.125rem}.text-sm{font-size:1rem}.text-sm,.text-xs{line-height:120%}.text-xs{font-size:.875rem}}:root{--primary-color:#7d68f4;--primary-hover:#9786f6;--text-on-primary:#fff}svg{transform:translate3d(var(--tw-translate-x),var(--tw-translate-y),0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}*,:after,:before{text-underline-offset:4px}input[type=number],input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield!important}.btn.is-loading{cursor:not-allowed;opacity:.4;pointer-events:none}.btn .btn-spinner,.btn.is-loading .btn-label{opacity:0;visibility:hidden}.btn.is-loading .btn-spinner{opacity:1;visibility:visible}[class*=\" uicon-\"],[class^=uicon-]{letter-spacing:0;line-height:100%}.placeholder\\:text-gray-300::-moz-placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.placeholder\\:text-gray-300::placeholder{--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}.hover\\:bg-black\\/5:hover{background-color:rgba(0,0,0,.05)}.hover\\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity))}.hover\\:bg-gray-200\\/75:hover{background-color:rgba(191,188,215,.75)}.hover\\:bg-primaryHover:hover{background-color:var(--primary-hover)}.hover\\:bg-red\\/90:hover{background-color:rgba(252,90,90,.9)}.hover\\:text-primaryHover:hover{color:var(--primary-hover)}.hover\\:underline:hover{text-decoration-line:underline}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-2:focus,.focus\\:ring:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\\:ring-primary:focus{--tw-ring-color:var(--primary-color)}.focus\\:ring-offset-2:focus{--tw-ring-offset-width:2px}:is(.dark .dark\\:border-gray-400){--tw-border-opacity:1;border-color:rgb(75 74 88/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-500){--tw-border-opacity:1;border-color:rgb(59 57 70/var(--tw-border-opacity))}:is(.dark .dark\\:border-gray-600){--tw-border-opacity:1;border-color:rgb(40 40 52/var(--tw-border-opacity))}:is(.dark .dark\\:bg-black){--tw-bg-opacity:1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-600){--tw-bg-opacity:1;background-color:rgb(40 40 52/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-700){--tw-bg-opacity:1;background-color:rgb(30 30 39/var(--tw-bg-opacity))}:is(.dark .dark\\:bg-gray-800){--tw-bg-opacity:1;background-color:rgb(20 20 26/var(--tw-bg-opacity))}:is(.dark .dark\\:text-\\[\\#201a41\\]){--tw-text-opacity:1;color:rgb(32 26 65/var(--tw-text-opacity))}:is(.dark .dark\\:text-gray-300){--tw-text-opacity:1;color:rgb(136 134 159/var(--tw-text-opacity))}:is(.dark .dark\\:text-white){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .dark\\:hover\\:bg-black\\/90:hover){background-color:rgba(0,0,0,.9)}:is(.dark .dark\\:focus\\:ring-offset-gray-900:focus){--tw-ring-offset-color:#08080e}@media (min-width:640px){.sm\\:absolute{position:absolute}.sm\\:left-4{left:1rem}.sm\\:top-1\\/2{top:50%}.sm\\:mt-4{margin-top:1rem}.sm\\:inline{display:inline}.sm\\:h-6{height:1.5rem}.sm\\:min-h-\\[700px\\]{min-height:700px}.sm\\:w-6{width:1.5rem}.sm\\:w-\\[calc\\(100\\%-theme\\(space\\.16\\)-theme\\(space\\.16\\)\\)\\]{width:calc(100% - 8rem)}.sm\\:w-auto{width:auto}.sm\\:max-w-md{max-width:28rem}.sm\\:-translate-y-1\\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\\:flex-col{flex-direction:column}.sm\\:justify-normal{justify-content:normal}.sm\\:space-x-0>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(0px*(1 - var(--tw-space-x-reverse)));margin-right:calc(0px*var(--tw-space-x-reverse))}.sm\\:space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(1rem*var(--tw-space-y-reverse));margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)))}.sm\\:bg-fixed{background-attachment:fixed}.sm\\:bg-left-top{background-position:0 0}.sm\\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\\:py-14{padding-bottom:3.5rem;padding-top:3.5rem}.sm\\:py-4{padding-bottom:1rem;padding-top:1rem}.sm\\:pt-16{padding-top:4rem}.sm\\:text-2xl{font-size:1.5rem;line-height:120%}.sm\\:text-base{font-size:1rem;line-height:120%}}@media (min-width:1280px){.md\\:min-w-\\[448px\\]{min-width:448px}.md\\:text-3xl{font-size:2rem;line-height:120%}.md\\:text-base{font-size:1rem;line-height:120%}.md\\:text-sm{font-size:.875rem;line-height:120%}.md\\:text-xs{font-size:.75rem;line-height:135%}}@media (max-height:900px) and (min-width:640px){.short\\:static{position:static}.short\\:left-auto{left:auto}.short\\:top-auto{top:auto}.short\\:hidden{display:none}.short\\:h-5{height:1.25rem}.short\\:min-h-\\[558px\\]{min-height:558px}.short\\:w-5{width:1.25rem}.short\\:translate-y-0{--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.short\\:flex-row{flex-direction:row}.short\\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(1rem*var(--tw-space-x-reverse))}.short\\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(0px*var(--tw-space-y-reverse));margin-top:calc(0px*(1 - var(--tw-space-y-reverse)))}.short\\:px-0{padding-left:0;padding-right:0}.short\\:py-3{padding-bottom:.75rem;padding-top:.75rem}.short\\:text-xl{font-size:1.25rem;line-height:120%}}.\\[\\&\\>\\*\\:last-child\\]\\:mb-0>:last-child{margin-bottom:0}.\\[\\&_h1\\]\\:mb-6 h1,.\\[\\&_h2\\]\\:mb-6 h2{margin-bottom:1.5rem}";
15207
15543
  export declare function injectTailwindCSS(): void;
15208
15544
  export interface MainTenantAdapterConfig {
15209
15545
  mainTenantId?: string;
@@ -15262,6 +15598,294 @@ export declare function init(config: AuthHeroConfig): {
15262
15598
  Bindings: Bindings;
15263
15599
  Variables: Variables;
15264
15600
  }, import("hono/types").MergeSchemaPath<{
15601
+ "/": {
15602
+ $get: {
15603
+ input: {
15604
+ query: {
15605
+ sort?: string | undefined;
15606
+ page?: string | undefined;
15607
+ per_page?: string | undefined;
15608
+ include_totals?: string | undefined;
15609
+ q?: string | undefined;
15610
+ };
15611
+ } & {
15612
+ header: {
15613
+ "tenant-id": string;
15614
+ };
15615
+ };
15616
+ output: {
15617
+ created_at: string;
15618
+ updated_at: string;
15619
+ name: string;
15620
+ id: string;
15621
+ display_name?: string | undefined | undefined;
15622
+ branding?: {
15623
+ colors?: {
15624
+ primary?: string | undefined | undefined;
15625
+ page_background?: string | undefined | undefined;
15626
+ } | undefined;
15627
+ logo_url?: string | undefined | undefined;
15628
+ } | undefined;
15629
+ metadata?: {
15630
+ [x: string]: any;
15631
+ } | undefined;
15632
+ enabled_connections?: {
15633
+ connection_id: string;
15634
+ assign_membership_on_login: boolean;
15635
+ show_as_button: boolean;
15636
+ is_signup_enabled: boolean;
15637
+ }[] | undefined;
15638
+ token_quota?: {
15639
+ client_credentials?: {
15640
+ enforce: boolean;
15641
+ per_day: number;
15642
+ per_hour: number;
15643
+ } | undefined;
15644
+ } | undefined;
15645
+ }[] | {
15646
+ length: number;
15647
+ start: number;
15648
+ limit: number;
15649
+ organizations: {
15650
+ created_at: string;
15651
+ updated_at: string;
15652
+ name: string;
15653
+ id: string;
15654
+ display_name?: string | undefined | undefined;
15655
+ branding?: {
15656
+ colors?: {
15657
+ primary?: string | undefined | undefined;
15658
+ page_background?: string | undefined | undefined;
15659
+ } | undefined;
15660
+ logo_url?: string | undefined | undefined;
15661
+ } | undefined;
15662
+ metadata?: {
15663
+ [x: string]: any;
15664
+ } | undefined;
15665
+ enabled_connections?: {
15666
+ connection_id: string;
15667
+ assign_membership_on_login: boolean;
15668
+ show_as_button: boolean;
15669
+ is_signup_enabled: boolean;
15670
+ }[] | undefined;
15671
+ token_quota?: {
15672
+ client_credentials?: {
15673
+ enforce: boolean;
15674
+ per_day: number;
15675
+ per_hour: number;
15676
+ } | undefined;
15677
+ } | undefined;
15678
+ }[];
15679
+ };
15680
+ outputFormat: "json";
15681
+ status: 200;
15682
+ };
15683
+ };
15684
+ } & {
15685
+ "/:id": {
15686
+ $get: {
15687
+ input: {
15688
+ param: {
15689
+ id: string;
15690
+ };
15691
+ } & {
15692
+ header: {
15693
+ "tenant-id": string;
15694
+ };
15695
+ };
15696
+ output: {
15697
+ created_at: string;
15698
+ updated_at: string;
15699
+ name: string;
15700
+ id: string;
15701
+ display_name?: string | undefined | undefined;
15702
+ branding?: {
15703
+ colors?: {
15704
+ primary?: string | undefined | undefined;
15705
+ page_background?: string | undefined | undefined;
15706
+ } | undefined;
15707
+ logo_url?: string | undefined | undefined;
15708
+ } | undefined;
15709
+ metadata?: {
15710
+ [x: string]: any;
15711
+ } | undefined;
15712
+ enabled_connections?: {
15713
+ connection_id: string;
15714
+ assign_membership_on_login: boolean;
15715
+ show_as_button: boolean;
15716
+ is_signup_enabled: boolean;
15717
+ }[] | undefined;
15718
+ token_quota?: {
15719
+ client_credentials?: {
15720
+ enforce: boolean;
15721
+ per_day: number;
15722
+ per_hour: number;
15723
+ } | undefined;
15724
+ } | undefined;
15725
+ };
15726
+ outputFormat: "json";
15727
+ status: 200;
15728
+ };
15729
+ };
15730
+ } & {
15731
+ "/:id": {
15732
+ $delete: {
15733
+ input: {
15734
+ param: {
15735
+ id: string;
15736
+ };
15737
+ } & {
15738
+ header: {
15739
+ "tenant-id": string;
15740
+ };
15741
+ };
15742
+ output: {};
15743
+ outputFormat: string;
15744
+ status: 200;
15745
+ };
15746
+ };
15747
+ } & {
15748
+ "/:id": {
15749
+ $patch: {
15750
+ input: {
15751
+ param: {
15752
+ id: string;
15753
+ };
15754
+ } & {
15755
+ header: {
15756
+ "tenant-id": string;
15757
+ };
15758
+ } & {
15759
+ json: {
15760
+ name?: string | undefined;
15761
+ branding?: {
15762
+ colors?: {
15763
+ primary?: string | undefined;
15764
+ page_background?: string | undefined;
15765
+ } | undefined;
15766
+ logo_url?: string | undefined;
15767
+ } | undefined;
15768
+ display_name?: string | undefined;
15769
+ metadata?: Record<string, any> | undefined;
15770
+ enabled_connections?: {
15771
+ connection_id: string;
15772
+ assign_membership_on_login?: boolean | undefined;
15773
+ show_as_button?: boolean | undefined;
15774
+ is_signup_enabled?: boolean | undefined;
15775
+ }[] | undefined;
15776
+ token_quota?: {
15777
+ client_credentials?: {
15778
+ enforce?: boolean | undefined;
15779
+ per_day?: number | undefined;
15780
+ per_hour?: number | undefined;
15781
+ } | undefined;
15782
+ } | undefined;
15783
+ };
15784
+ };
15785
+ output: {
15786
+ created_at: string;
15787
+ updated_at: string;
15788
+ name: string;
15789
+ id: string;
15790
+ display_name?: string | undefined | undefined;
15791
+ branding?: {
15792
+ colors?: {
15793
+ primary?: string | undefined | undefined;
15794
+ page_background?: string | undefined | undefined;
15795
+ } | undefined;
15796
+ logo_url?: string | undefined | undefined;
15797
+ } | undefined;
15798
+ metadata?: {
15799
+ [x: string]: any;
15800
+ } | undefined;
15801
+ enabled_connections?: {
15802
+ connection_id: string;
15803
+ assign_membership_on_login: boolean;
15804
+ show_as_button: boolean;
15805
+ is_signup_enabled: boolean;
15806
+ }[] | undefined;
15807
+ token_quota?: {
15808
+ client_credentials?: {
15809
+ enforce: boolean;
15810
+ per_day: number;
15811
+ per_hour: number;
15812
+ } | undefined;
15813
+ } | undefined;
15814
+ };
15815
+ outputFormat: "json";
15816
+ status: 200;
15817
+ };
15818
+ };
15819
+ } & {
15820
+ "/": {
15821
+ $post: {
15822
+ input: {
15823
+ header: {
15824
+ "tenant-id": string;
15825
+ };
15826
+ } & {
15827
+ json: {
15828
+ name: string;
15829
+ id?: string | undefined;
15830
+ display_name?: string | undefined;
15831
+ branding?: {
15832
+ colors?: {
15833
+ primary?: string | undefined;
15834
+ page_background?: string | undefined;
15835
+ } | undefined;
15836
+ logo_url?: string | undefined;
15837
+ } | undefined;
15838
+ metadata?: Record<string, any> | undefined;
15839
+ enabled_connections?: {
15840
+ connection_id: string;
15841
+ assign_membership_on_login?: boolean | undefined;
15842
+ show_as_button?: boolean | undefined;
15843
+ is_signup_enabled?: boolean | undefined;
15844
+ }[] | undefined;
15845
+ token_quota?: {
15846
+ client_credentials?: {
15847
+ enforce?: boolean | undefined;
15848
+ per_day?: number | undefined;
15849
+ per_hour?: number | undefined;
15850
+ } | undefined;
15851
+ } | undefined;
15852
+ };
15853
+ };
15854
+ output: {
15855
+ created_at: string;
15856
+ updated_at: string;
15857
+ name: string;
15858
+ id: string;
15859
+ display_name?: string | undefined | undefined;
15860
+ branding?: {
15861
+ colors?: {
15862
+ primary?: string | undefined | undefined;
15863
+ page_background?: string | undefined | undefined;
15864
+ } | undefined;
15865
+ logo_url?: string | undefined | undefined;
15866
+ } | undefined;
15867
+ metadata?: {
15868
+ [x: string]: any;
15869
+ } | undefined;
15870
+ enabled_connections?: {
15871
+ connection_id: string;
15872
+ assign_membership_on_login: boolean;
15873
+ show_as_button: boolean;
15874
+ is_signup_enabled: boolean;
15875
+ }[] | undefined;
15876
+ token_quota?: {
15877
+ client_credentials?: {
15878
+ enforce: boolean;
15879
+ per_day: number;
15880
+ per_hour: number;
15881
+ } | undefined;
15882
+ } | undefined;
15883
+ };
15884
+ outputFormat: "json";
15885
+ status: 201;
15886
+ };
15887
+ };
15888
+ }, "/organizations"> & import("hono/types").MergeSchemaPath<{
15265
15889
  "/": {
15266
15890
  $get: {
15267
15891
  input: {