{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js", "ssg:https://framerusercontent.com/modules/Mjt3x28vaX12QpcKLobt/qm7AYc3Oj5Q3yVq4tzhM/XI1i2axDh.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useMemo,useState}from\"react\";// @ts-ignore\nimport{addPropertyControls,ControlType,withCSS,inferInitialRouteFromPath,useRouter}from\"framer\";// @ts-ignore\nimport{auth}from\"https://cdn.framerauth.com/packages/sdk/live/latest/framerauth.esm.js\";import BaseForm,{basePropertyControls}from\"https://framerusercontent.com/modules/ExV5oOjPmSTY0gHEjmby/NpqywsqBSPokrP5l2Kmw/BaseForm.js\";//////////////////////////////////\n/////// FORM CONFIGURATION ///////\n//////////////////////////////////\n// Define inputs\nconst baseInputs=[{label:\"Email\",name:\"email\",type:\"email\",required:true,extra:false,placeholder:\"Email\"},{label:\"Password\",name:\"password\",type:\"password\",required:true,extra:false,placeholder:\"Password\"}];const formId=\"sign_in\"// Unique form ID for this form.\n;const defaultButtonLabel=\"Sign In\"// Default submit button label on this form.\n;const exposePasswordVisibilityToggle=true// Expose password visibility toggle property for password inputs.\n;const buttonLabelKey=`${formId}_button_label`// Key for button label property control.\n;/**\n * Sign In Form\n * By Joel Whitaker\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const SignInForm=withCSS(function SignInForm({...baseProps}){const[inputs,setInputs]=useState(baseInputs)// We can override inputs with property controls.\n;const[redirectLink,setRedirectLink]=useState(baseProps.link);const[initializing,setInitializing]=useState(true);const buttonProps=useMemo(()=>{// Map button label to button\n// This is to avoid style copy-pasting of the button label.\nreturn{...baseProps.button,label:baseProps.button[buttonLabelKey]};},[baseProps.button,baseProps.button[buttonLabelKey]]);useEffect(()=>{// Map input labels to inputs\nif(baseProps.inputFields){const newInputs=[];baseInputs.forEach((input,_idx)=>{const inputControlName=snakeToCamel(input.name);if(!(inputControlName in baseProps.inputFields)){// If the input is not in the inputFields object, skip it.\nconsole.log(`Input ${inputControlName} not found in inputFields object.`);return;}const inputField=baseProps.inputFields[inputControlName];const display=inputField.display;const label=inputField.label;const placeholder=label;if(display===true||display===undefined){newInputs.push({...input,label,placeholder});}});setInputs(newInputs);}},[baseProps.inputFields]);const router=useRouter();useEffect(()=>{const checkAuthStatus=async()=>{setInitializing(true);try{if(isBrowser()){var _site_links;const{data:{site}}=await auth.getSite({cache:true});const accountPage=(site===null||site===void 0?void 0:(_site_links=site.links)===null||_site_links===void 0?void 0:_site_links.account)||\"/account\";const licenseKey=getParamValue(\"license_key\");const{data:_,error}=await auth.getUser();if(!error){if(licenseKey){navigateTo(`${accountPage}#license_key=${licenseKey}`);}else{if(redirectLink){navigateTo(redirectLink);}// setLoading(false)\n}}else{if(licenseKey){setRedirectLink(`${accountPage}#license_key=${licenseKey}`);}// setLoading(false)\n}}}finally{setInitializing(false);}};checkAuthStatus();},[]);const navigateTo=link=>{const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}};const onSubmit=async formData=>{// Prevent submitting while submitting\nconst{data:_,error}=await auth.signInWithPassword({email:formData.email,password:formData.password});if(error){return{ok:false,message:error.message};}// const event = new Event('framerAuthRefetchUser');\n// window.dispatchEvent(event);\nreturn{ok:true,message:\"Successfully Signed in.\"};};return /*#__PURE__*/_jsx(BaseForm,{...baseProps,isInitializing:initializing,link:redirectLink,button:buttonProps,inputs:inputs,onSubmit:onSubmit});},[]);const isBrowser=()=>{return typeof window!==\"undefined\";};const getParamValue=paramName=>{if(!isBrowser()){return null;}const urlParams=new URLSearchParams(window.location.search);if(urlParams.has(paramName)){return urlParams.get(paramName);}const hashParams=new URLSearchParams(window.location.hash.substring(1))// Remove the '#' part\n;if(hashParams.has(paramName)){return hashParams.get(paramName);}return null;};const snakeToCamel=str=>{return str.split(\"_\").map((word,index)=>{if(index===0){return word;}return word.charAt(0).toUpperCase()+word.slice(1);}).join(\"\");};// Here we can override property controls if we don't want to expose them to the user.\n// We generate the inputs property controls dynamically based on the inputs array.\nconst inputsPropertyControls={};baseInputs.forEach((input,_idx)=>{const inputControlName=snakeToCamel(input.name);inputsPropertyControls[inputControlName]={title:`${input.label}`,type:ControlType.Object,controls:{display:input.extra===true?{title:\"Display\",type:ControlType.Boolean,defaultValue:true}:undefined,label:{title:\"Label\",type:ControlType.String,defaultValue:input.label}}};});const exportBasePropertyControls={...basePropertyControls,link:{title:\"Redirect\",type:ControlType.Link},inputFields:{title:\"Inputs\",type:ControlType.Object,controls:inputsPropertyControls},input:{...basePropertyControls.input,controls:{...basePropertyControls.input.controls,icon:exposePasswordVisibilityToggle?{type:ControlType.Object,title:\"Icon\",controls:{showPasswordVisibilityIcon:{title:\"Activated\",type:ControlType.Boolean,defaultValue:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#000\",hidden:props=>!props.showPasswordVisibilityIcon}}}:undefined}},button:{// Inject default button label\n...basePropertyControls.button,controls:{...basePropertyControls.button.controls,label:undefined,[buttonLabelKey]:{...basePropertyControls.button.controls.label,defaultValue:defaultButtonLabel}}}};// @ts-ignore - TS doesn't like our basePropertyControls type.\naddPropertyControls(SignInForm,exportBasePropertyControls);SignInForm.defaultProps={...BaseForm.defaultProps,...SignInForm.defaultProps};export default SignInForm;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SignInForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SignInForm.map", "// Generated by Framer (15813d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SignInForm from\"https://framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js\";import Footer from\"#framer/local/canvasComponent/mAr3QMjet/mAr3QMjet.js\";import ButtonSecondary from\"#framer/local/canvasComponent/o7ZgbblrO/o7ZgbblrO.js\";import ButtonText from\"#framer/local/canvasComponent/QxX6UV56z/QxX6UV56z.js\";import PoweredByFramerAuth from\"#framer/local/canvasComponent/sHCQ8Wmz3/sHCQ8Wmz3.js\";import Navbar from\"#framer/local/canvasComponent/W_nSRjALB/W_nSRjALB.js\";import*as sharedStyle from\"#framer/local/css/Jy8sIn4NC/Jy8sIn4NC.js\";import*as sharedStyle1 from\"#framer/local/css/xYzqQRe4P/xYzqQRe4P.js\";import metadataProvider from\"#framer/local/webPageMetadata/XI1i2axDh/XI1i2axDh.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const SignInFormFonts=getFonts(SignInForm);const ButtonTextFonts=getFonts(ButtonText);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const PoweredByFramerAuthFonts=getFonts(PoweredByFramerAuth);const FooterFonts=getFonts(Footer);const breakpoints={EzT2W99xf:\"(max-width: 809px)\",qDN6JdYYd:\"(min-width: 1200px)\",yV_8hvXVj:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-b5pOj\";const variantClassNames={EzT2W99xf:\"framer-v-1nxmmd4\",qDN6JdYYd:\"framer-v-1igjc98\",yV_8hvXVj:\"framer-v-6rrfe8\"};const transition1={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"qDN6JdYYd\",Phone:\"EzT2W99xf\",Tablet:\"yV_8hvXVj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qDN6JdYYd\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-b5pOj`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-b5pOj`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qDN6JdYYd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1igjc98\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"min(100vw, 1440px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sbcxap-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{variant:\"GHDbKnykI\"},yV_8hvXVj:{variant:\"C1DvnsxjL\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Rhl6p_UKd\",layoutId:\"Rhl6p_UKd\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"mvbwS52OJ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1rs6vai\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qc9cxu\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgwkli\",\"data-styles-preset\":\"Jy8sIn4NC\",children:\"Sign in\"})}),className:\"framer-n4bi4g\",\"data-framer-appear-id\":\"n4bi4g\",\"data-framer-name\":\"Master Framer, One Lesson at a Time.\",fonts:[\"Inter\"],initial:animation1,name:\"Master Framer, One Lesson at a Time.\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-o5psim\",\"data-border\":true,\"data-framer-appear-id\":\"o5psim\",\"data-framer-name\":\"Sign in\",initial:animation1,name:\"Sign in\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cayQ6_N0V\"},implicitPathVariables:undefined},{href:{webPageId:\"cayQ6_N0V\"},implicitPathVariables:undefined},{href:{webPageId:\"cayQ6_N0V\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ug1ica-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{link:resolvedLinks[2]},yV_8hvXVj:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SignInForm,{button:{align:\"stretch\",borderRadius:20,buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:20,buttonPaddingBottom:20,buttonPaddingLeft:20,buttonPaddingPerSide:false,buttonPaddingRight:20,buttonPaddingTop:20,color:\"var(--token-fcbde8b5-9cb0-415e-98ad-53aae7dbc210, rgb(255, 255, 255))\",fill:\"var(--token-c5b1ede5-1fdb-43f8-9e61-c18f14176b20, rgb(102, 0, 255))\",shouldAppear:true,sign_in_button_label:\"Sign In\"},gap:20,height:\"100%\",id:\"HiKE4f3dL\",input:{borderRadius:15,color:\"var(--token-2fb11fcc-bbed-4642-9af3-548e1bb636c7, rgb(0, 0, 17))\",fill:\"var(--token-fcbde8b5-9cb0-415e-98ad-53aae7dbc210, rgb(255, 255, 255))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-c5b1ede5-1fdb-43f8-9e61-c18f14176b20, rgb(102, 0, 255))\",focusWidthFrom:0,focusWidthTo:2},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:true,icon:{color:\"rgb(0, 0, 0)\",showPasswordVisibilityIcon:true},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholderColor:\"rgba(0, 0, 0, 0.3)\"},inputFields:{email:{label:\"Email\"},password:{label:\"Password\"}},label:{borderRadius:0,color:\"var(--token-fcbde8b5-9cb0-415e-98ad-53aae7dbc210, rgb(255, 255, 255))\",display:true,displayAsterix:true,fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},layoutId:\"HiKE4f3dL\",link:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"W486pwinN\"},implicitPathVariables:undefined},{href:{webPageId:\"W486pwinN\"},implicitPathVariables:undefined},{href:{webPageId:\"W486pwinN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n0fp1z-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{pV34km0KR:resolvedLinks1[2]},yV_8hvXVj:{pV34km0KR:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonText,{height:\"100%\",id:\"oSTkhSPT7\",iPHjmCOyf:\"Forgot password?\",layoutId:\"oSTkhSPT7\",pV34km0KR:resolvedLinks1[0],variant:\"OfuMRftOO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uzdnka\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qliibj\",\"data-styles-preset\":\"xYzqQRe4P\",style:{\"--framer-text-alignment\":\"center\"},children:\"Haven't activated your license key?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qliibj\",\"data-styles-preset\":\"xYzqQRe4P\",children:\"Haven't activated your license key?\"})}),className:\"framer-1j762qn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cmZlpcI6e\"},implicitPathVariables:undefined},{href:{webPageId:\"cmZlpcI6e\"},implicitPathVariables:undefined},{href:{webPageId:\"cmZlpcI6e\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t8ri1r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{ci1wCMroH:resolvedLinks2[2]},yV_8hvXVj:{ci1wCMroH:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonSecondary,{ci1wCMroH:resolvedLinks2[0],height:\"100%\",id:\"wF4m2fXMF\",JdgRBlCLO:\"Activate\",layoutId:\"wF4m2fXMF\",variant:\"qmtU9vp8A\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{y:632}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:543,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tbqfm5-container\",children:/*#__PURE__*/_jsx(PoweredByFramerAuth,{height:\"100%\",id:\"AVXChL1Sv\",layoutId:\"AVXChL1Sv\",SSmuheGdA:\"Powered by FramerAuth\",width:\"100%\",yGufgN238:\"var(--token-fcbde8b5-9cb0-415e-98ad-53aae7dbc210, rgb(255, 255, 255))\",zOTSVnnFE:\"https://framer-auth.lemonsqueezy.com?aff=k8ZYR\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{y:736}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:551,width:\"100vw\",y:647,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bpg8ic-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EzT2W99xf:{variant:\"yXqZDp4ob\"},yV_8hvXVj:{variant:\"yXqZDp4ob\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pSfSPZsGI\",layoutId:\"pSfSPZsGI\",style:{width:\"100%\"},variant:\"pEgzZj_Wf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-b5pOj { background: var(--token-2fb11fcc-bbed-4642-9af3-548e1bb636c7, rgb(0, 0, 17)); }`,\".framer-b5pOj.framer-1tomqaz, .framer-b5pOj .framer-1tomqaz { display: block; }\",\".framer-b5pOj.framer-1igjc98 { align-content: center; align-items: center; background-color: var(--token-2fb11fcc-bbed-4642-9af3-548e1bb636c7, #000011); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-b5pOj .framer-sbcxap-container { flex: none; height: auto; left: 50%; max-width: 1440px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-b5pOj .framer-1rs6vai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 120px 80px 80px 80px; position: relative; width: 100%; z-index: 1; }\",\".framer-b5pOj .framer-1qc9cxu { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-b5pOj .framer-n4bi4g { flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b5pOj .framer-o5psim { --border-bottom-width: 1px; --border-color: var(--token-ca5ab1e4-564e-4f83-b667-b80e3f8f7bc7, #00c750); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b5pOj .framer-1ug1ica-container, .framer-b5pOj .framer-bpg8ic-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-b5pOj .framer-n0fp1z-container, .framer-b5pOj .framer-1t8ri1r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-b5pOj .framer-uzdnka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b5pOj .framer-1j762qn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b5pOj .framer-tbqfm5-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-b5pOj.framer-1igjc98, .framer-b5pOj .framer-1rs6vai, .framer-b5pOj .framer-1qc9cxu, .framer-b5pOj .framer-o5psim, .framer-b5pOj .framer-uzdnka { gap: 0px; } .framer-b5pOj.framer-1igjc98 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b5pOj.framer-1igjc98 > :first-child, .framer-b5pOj .framer-1rs6vai > :first-child, .framer-b5pOj .framer-1qc9cxu > :first-child, .framer-b5pOj .framer-o5psim > :first-child { margin-top: 0px; } .framer-b5pOj.framer-1igjc98 > :last-child, .framer-b5pOj .framer-1rs6vai > :last-child, .framer-b5pOj .framer-1qc9cxu > :last-child, .framer-b5pOj .framer-o5psim > :last-child { margin-bottom: 0px; } .framer-b5pOj .framer-1rs6vai > *, .framer-b5pOj .framer-o5psim > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-b5pOj .framer-1qc9cxu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-b5pOj .framer-uzdnka > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-b5pOj .framer-uzdnka > :first-child { margin-left: 0px; } .framer-b5pOj .framer-uzdnka > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1200px) { .framer-b5pOj .hidden-1igjc98 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-b5pOj .hidden-6rrfe8 { display: none !important; } .${metadata.bodyClassName}-framer-b5pOj { background: var(--token-2fb11fcc-bbed-4642-9af3-548e1bb636c7, rgb(0, 0, 17)); } .framer-b5pOj.framer-1igjc98 { width: 810px; } .framer-b5pOj .framer-1rs6vai { padding: 120px 40px 80px 40px; }}`,`@media (max-width: 809px) { .framer-b5pOj .hidden-1nxmmd4 { display: none !important; } .${metadata.bodyClassName}-framer-b5pOj { background: var(--token-2fb11fcc-bbed-4642-9af3-548e1bb636c7, rgb(0, 0, 17)); } .framer-b5pOj.framer-1igjc98 { width: 390px; } .framer-b5pOj .framer-1rs6vai { padding: 120px 20px 80px 20px; } .framer-b5pOj .framer-o5psim { width: 100%; } .framer-b5pOj .framer-uzdnka { flex-direction: column; gap: 20px; } .framer-b5pOj .framer-1j762qn { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-b5pOj .framer-uzdnka { gap: 0px; } .framer-b5pOj .framer-uzdnka > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-b5pOj .framer-uzdnka > :first-child { margin-top: 0px; } .framer-b5pOj .framer-uzdnka > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-b5pOj[data-border=\"true\"]::after, .framer-b5pOj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1404\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yV_8hvXVj\":{\"layout\":[\"fixed\",\"auto\"]},\"EzT2W99xf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerXI1i2axDh=withCSS(Component,css,\"framer-b5pOj\");export default FramerXI1i2axDh;FramerXI1i2axDh.displayName=\"Sign In\";FramerXI1i2axDh.defaultProps={height:1404,width:1200};addFonts(FramerXI1i2axDh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarFonts,...SignInFormFonts,...ButtonTextFonts,...ButtonSecondaryFonts,...PoweredByFramerAuthFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXI1i2axDh\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yV_8hvXVj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EzT2W99xf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1404\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["baseInputs", "formId", "defaultButtonLabel", "exposePasswordVisibilityToggle", "buttonLabelKey", "SignInForm", "withCSS", "baseProps", "inputs", "setInputs", "ye", "redirectLink", "setRedirectLink", "initializing", "setInitializing", "buttonProps", "se", "ue", "newInputs", "input", "_idx", "inputControlName", "snakeToCamel", "inputField", "display", "label", "placeholder", "router", "useRouter", "isBrowser", "_site_links", "site", "N", "accountPage", "licenseKey", "getParamValue", "_", "error", "navigateTo", "link", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "p", "BaseForm_default", "formData", "window", "paramName", "urlParams", "hashParams", "str", "word", "index", "inputsPropertyControls", "ControlType", "exportBasePropertyControls", "basePropertyControls", "props", "addPropertyControls", "SignInForm_default", "NavbarFonts", "getFonts", "W_nSRjALB_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "SignInFormFonts", "SignInForm_default", "ButtonTextFonts", "QxX6UV56z_default", "ButtonSecondaryFonts", "o7ZgbblrO_default", "MotionDivWithOptimizedAppearEffect", "motion", "PoweredByFramerAuthFonts", "sHCQ8Wmz3_default", "FooterFonts", "mAr3QMjet_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "W_nSRjALB_default", "RichTextWithOptimizedAppearEffect", "x", "MotionDivWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "SignInForm_default", "resolvedLinks1", "QxX6UV56z_default", "RichText", "resolvedLinks2", "o7ZgbblrO_default", "sHCQ8Wmz3_default", "mAr3QMjet_default", "css", "FramerXI1i2axDh", "withCSS", "XI1i2axDh_default", "addFonts", "NavbarFonts", "SignInFormFonts", "ButtonTextFonts", "ButtonSecondaryFonts", "PoweredByFramerAuthFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
