{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js", "ssg:https://framerusercontent.com/modules/cpwhLm2dqKlNVenR0iZi/nu5WhEDLnog9ey9oJKG9/EAKqIaPjl.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 (99f3353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SignInForm from\"https://framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js\";import*as sharedStyle3 from\"#framer/local/css/BoYcHe90r/BoYcHe90r.js\";import*as sharedStyle1 from\"#framer/local/css/dC8FTu0pa/dC8FTu0pa.js\";import*as sharedStyle2 from\"#framer/local/css/itCqtVoWd/itCqtVoWd.js\";import*as sharedStyle from\"#framer/local/css/mDcYvwCtx/mDcYvwCtx.js\";import*as sharedStyle4 from\"#framer/local/css/w7WsnhLcv/w7WsnhLcv.js\";import metadataProvider from\"#framer/local/webPageMetadata/EAKqIaPjl/EAKqIaPjl.js\";const SignInFormFonts=getFonts(SignInForm);const breakpoints={JaeMUOG4I:\"(min-width: 1200px)\",n6Yiy4s71:\"(max-width: 809px)\",Zc0jylmGJ:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ln0IH\";const variantClassNames={JaeMUOG4I:\"framer-v-f1c7ak\",n6Yiy4s71:\"framer-v-g4l48n\",Zc0jylmGJ:\"framer-v-tz7ywt\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"JaeMUOG4I\",Phone:\"n6Yiy4s71\",Tablet:\"Zc0jylmGJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JaeMUOG4I\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JaeMUOG4I\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-004153e9-836e-4588-87f8-07c9aa18e03d, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-f1c7ak\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16u3kgv\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18d8fz7\",\"data-framer-name\":\"Sign In Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lxh5qy\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ja1f5m\",\"data-styles-preset\":\"mDcYvwCtx\",style:{\"--framer-text-color\":\"var(--token-e0da01bd-4e0f-4d83-9396-a2ca91f1ef19, rgb(0, 0, 0))\"},children:\"Sign In\"})}),className:\"framer-llb0b1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wq7owu\",\"data-framer-name\":\"Fields\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-badybx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NWIdLf9hz\",scopeId:\"EAKqIaPjl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n6Yiy4s71:{link:resolvedLinks[2]},Zc0jylmGJ:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SignInForm,{button:{align:\"stretch\",borderRadius:8,buttonFont:{fontFamily:'\"Onest\", \"Onest Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:16,buttonPaddingBottom:16,buttonPaddingLeft:16,buttonPaddingPerSide:false,buttonPaddingRight:16,buttonPaddingTop:16,color:\"var(--token-db88a771-6701-4faa-b3c9-41f973b43aa0, rgb(255, 255, 255))\",fill:\"var(--token-e0da01bd-4e0f-4d83-9396-a2ca91f1ef19, rgb(0, 0, 0))\",shouldAppear:true,sign_in_button_label:\"Sign In\"},gap:16,height:\"100%\",id:\"NWIdLf9hz\",input:{borderObject:{borderColor:\"var(--token-58389c29-c015-4427-a57c-637e65cb6404, rgb(235, 235, 235))\",borderWidth:1},borderRadius:8,color:\"var(--token-e0da01bd-4e0f-4d83-9396-a2ca91f1ef19, rgb(0, 0, 0))\",fill:\"var(--token-004153e9-836e-4588-87f8-07c9aa18e03d, rgb(250, 250, 250))\",fixedHeight:50,focusObject:{focusColor:\"var(--token-e0da01bd-4e0f-4d83-9396-a2ca91f1ef19, rgb(0, 0, 0))\",focusWidthFrom:0,focusWidthTo:1},font:{fontFamily:'\"Onest\", \"Onest Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:true,icon:{color:\"var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102))\",showPasswordVisibilityIcon:true},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholderColor:\"var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102))\"},inputFields:{email:{label:\"Email\"},password:{label:\"Password\"}},label:{borderRadius:0,color:\"var(--token-e0da01bd-4e0f-4d83-9396-a2ca91f1ef19, rgb(0, 0, 0))\",display:true,displayAsterix:false,fill:\"rgba(255, 255, 255, 0)\",font:{fontFamily:'\"Onest\", \"Onest Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:0,paddingBottom:16,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0},layoutId:\"NWIdLf9hz\",link:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-136iv46\",\"data-styles-preset\":\"dC8FTu0pa\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W5ZzL6gSx\"},motionChild:true,nodeId:\"oOCHLiWNM\",openInNewTab:false,scopeId:\"EAKqIaPjl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oxo1gx\",\"data-styles-preset\":\"itCqtVoWd\",children:\"Forgot Password?\"})})})}),className:\"framer-11m3bab\",\"data-framer-name\":\"Don\u2019t have a license key?\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0kvvw\",\"data-framer-name\":\"Text Links\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bjmx\",\"data-styles-preset\":\"BoYcHe90r\",children:\"-License not activated yet?-\"})}),className:\"framer-dfunr4\",\"data-framer-name\":\"Don\u2019t have a license key?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-136iv46\",\"data-styles-preset\":\"dC8FTu0pa\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AC5IC9weO\"},motionChild:true,nodeId:\"XUKBL3Xg2\",openInNewTab:false,scopeId:\"EAKqIaPjl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tgkgfh\",\"data-styles-preset\":\"w7WsnhLcv\",children:\"Activate License\"})})})}),className:\"framer-ykx2g0\",\"data-framer-name\":\"Don\u2019t have a license key?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ln0IH.framer-1bduf19, .framer-ln0IH .framer-1bduf19 { display: block; }\",\".framer-ln0IH.framer-f1c7ak { align-content: center; align-items: center; background-color: var(--token-004153e9-836e-4588-87f8-07c9aa18e03d, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ln0IH .framer-16u3kgv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-ln0IH .framer-18d8fz7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ln0IH .framer-lxh5qy { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ln0IH .framer-llb0b1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ln0IH .framer-wq7owu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ln0IH .framer-badybx-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ln0IH .framer-11m3bab { flex: none; height: auto; position: absolute; right: 0px; top: 44%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-ln0IH .framer-1e0kvvw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ln0IH .framer-dfunr4, .framer-ln0IH .framer-ykx2g0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ln0IH.framer-f1c7ak, .framer-ln0IH .framer-16u3kgv, .framer-ln0IH .framer-18d8fz7, .framer-ln0IH .framer-lxh5qy, .framer-ln0IH .framer-wq7owu, .framer-ln0IH .framer-1e0kvvw { gap: 0px; } .framer-ln0IH.framer-f1c7ak > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ln0IH.framer-f1c7ak > :first-child, .framer-ln0IH .framer-18d8fz7 > :first-child, .framer-ln0IH .framer-lxh5qy > :first-child, .framer-ln0IH .framer-1e0kvvw > :first-child { margin-top: 0px; } .framer-ln0IH.framer-f1c7ak > :last-child, .framer-ln0IH .framer-18d8fz7 > :last-child, .framer-ln0IH .framer-lxh5qy > :last-child, .framer-ln0IH .framer-1e0kvvw > :last-child { margin-bottom: 0px; } .framer-ln0IH .framer-16u3kgv > *, .framer-ln0IH .framer-wq7owu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ln0IH .framer-16u3kgv > :first-child, .framer-ln0IH .framer-wq7owu > :first-child { margin-left: 0px; } .framer-ln0IH .framer-16u3kgv > :last-child, .framer-ln0IH .framer-wq7owu > :last-child { margin-right: 0px; } .framer-ln0IH .framer-18d8fz7 > *, .framer-ln0IH .framer-lxh5qy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ln0IH .framer-1e0kvvw > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ln0IH.framer-f1c7ak { width: 810px; }}\",\"@media (max-width: 809px) { .framer-ln0IH.framer-f1c7ak { width: 390px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1045\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zc0jylmGJ\":{\"layout\":[\"fixed\",\"auto\"]},\"n6Yiy4s71\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerEAKqIaPjl=withCSS(Component,css,\"framer-ln0IH\");export default FramerEAKqIaPjl;FramerEAKqIaPjl.displayName=\"Sign In\";FramerEAKqIaPjl.defaultProps={height:1045,width:1200};addFonts(FramerEAKqIaPjl,[{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:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2\",weight:\"400\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"}]},...SignInFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEAKqIaPjl\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"1045\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zc0jylmGJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n6Yiy4s71\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "SignInFormFonts", "getFonts", "SignInForm_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SignInForm_default", "Link", "css", "FramerEAKqIaPjl", "withCSS", "EAKqIaPjl_default", "addFonts", "SignInFormFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
