{"version":3,"file":"ITsdJ5xD3.4_OJ2jrm.mjs","names":["Component","ButtonSubmit","useRef","_Fragment","FormPlainTextInput"],"sources":["https:/framerusercontent.com/modules/sTUAGPKrlLuAi9o2Qp9b/mipc4gfT4AjeXtyGP4AU/EmailCollect.js","https:/framerusercontent.com/modules/AQ3csXxF3XvF6WesJw5O/MUl8zBh3c1Mq1kNVA86U/ITsdJ5xD3.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export function withFormValidation(Component){return props=>{useEffect(()=>{const emailInput=document.querySelector(\"input[name='email']\");const nameInput=document.querySelector(\"input[name='name']\");const formElement=document.querySelector(\"form\");// Function to handle updates to domain, company name, and name inputs\nconst updateDomainInput=value=>{const domainInput=document.querySelector(\"input[name='domain']\");if(domainInput)domainInput.value=value.split(\"@\")[1]||\"\";};const updateCompanyNameInput=value=>{const companyNameInput=document.querySelector(\"input[name='companyName']\");if(companyNameInput)companyNameInput.value=value.split(\"@\")[1]?.split(\".\")[0]||\"\";};const updateNameInput=value=>{if(nameInput)nameInput.value=value.split(\"@\")[0]||\"\";};const handleEmailInput=()=>{if(!emailInput)return;const personalEmailDomains=[\"gmail\",\"yahoo\",\"hotmail\",\"outlook\",\"live\",\"aol\",\"icloud\",\"mail\",\"protonmail\",\"zoho\",\"test\",\"gmai\",\"msn\",\"yandex\",\"gmx\",\"aim\",\"inbox\",\"example\",\"gmail.com\",// Major disposable/temporary email services\n\"10minutemail\",\"guerrillamail\",\"mailinator\",\"tempmail\",\"maildrop\",\"yopmail\",\"trashmail\",\"getnada\",\"mailnesia\",\"fakemail\",\"throwawaymail\",\"sharklasers\",\"spamgourmet\",\"moakt\",\"dispostable\",\"mailcatch\",\"mintemail\",\"mytempemail\",\"tempinbox\",\"spam4.me\",\"qq.com\",\"qq\",\"bhuxp.org\",\"volku.org\",\"laxiw.org\"];const emailPattern=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/;const value=emailInput.value;const domain=value.split(\"@\")[1];// Update related fields\nupdateDomainInput(value);updateCompanyNameInput(value);updateNameInput(value);if(value===\"\"){if(nameInput)nameInput.value=\"\";emailInput.setCustomValidity(\"\");}else if(!emailPattern.test(value)){emailInput.setCustomValidity(\"Please input your email in the valid format.\");}else if(domain&&personalEmailDomains.some(domainPart=>domain.includes(domainPart))){emailInput.setCustomValidity(\"Please only enter your work email.\");}else{emailInput.setCustomValidity(\"\");}emailInput.reportValidity()// Show validation errors immediately\n;};const handleFormSubmit=event=>{if(!emailInput||!formElement)return;event.preventDefault()// Prevent default form submission behavior\n;if(formElement.checkValidity()){const email=emailInput.value;const currentUrl=new URL(window.location.href);currentUrl.searchParams.set(\"email\",email);window.history.pushState({},\"\",currentUrl.toString());console.log(\"Updated URL with email:\",currentUrl.toString());}else{formElement.reportValidity();}};const handleKeyDown=event=>{if(event.key===\"Enter\"){event.preventDefault()// Prevent default Enter key behavior\n;formElement?.dispatchEvent(new Event(\"submit\",{bubbles:true,cancelable:true}));}};if(emailInput){emailInput.addEventListener(\"input\",handleEmailInput);const params=new URLSearchParams(window.location.search);const emailParam=params.get(\"email\");if(emailParam){emailInput.value=emailParam;console.log(\"Prefilled email:\",emailParam);// 🚀 Trigger validation to prevent bypassing the check via URL\nhandleEmailInput();}}if(formElement){const params=new URLSearchParams(window.location.search);params.forEach((value,key)=>{if(key!==\"email\"){// Check if hidden input already exists to prevent duplicates\nlet existingInput=formElement.querySelector(`input[name=\"${key}\"]`);if(existingInput){// Update existing input value with the latest value\nexistingInput.value=value;}else{// Create new hidden input if it doesn't exist\nconst input=document.createElement(\"input\");input.type=\"hidden\";input.name=key;input.value=value;formElement.appendChild(input);}}});const pagePath=window.location.pathname===\"/\"?\"Homepage\":window.location.pathname;// Check if currentPage input already exists\nlet existingPageInput=formElement.querySelector(\"input[name='currentPage']\");if(existingPageInput){// Update existing currentPage input with the latest page\nexistingPageInput.value=pagePath;}else{// Create new currentPage input if it doesn't exist\nconst pageInput=document.createElement(\"input\");pageInput.type=\"hidden\";pageInput.name=\"currentPage\";pageInput.value=pagePath;formElement.appendChild(pageInput);}formElement.addEventListener(\"submit\",handleFormSubmit);}emailInput?.addEventListener(\"keydown\",handleKeyDown);return()=>{emailInput?.removeEventListener(\"input\",handleEmailInput);emailInput?.removeEventListener(\"keydown\",handleKeyDown);formElement?.removeEventListener(\"submit\",handleFormSubmit);};},[]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFormValidation\":{\"type\":\"reactHoc\",\"name\":\"withFormValidation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EmailCollect.map","// Generated by Framer (d19865c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withFormValidation}from\"https://framerusercontent.com/modules/sTUAGPKrlLuAi9o2Qp9b/mipc4gfT4AjeXtyGP4AU/EmailCollect.js\";import ButtonSubmit from\"https://framerusercontent.com/modules/iTNwo5dctRFP12LlKwjk/8nRFenTac9mDhZoa1rlB/FCSOekEmQ.js\";const ButtonSubmitFonts=getFonts(ButtonSubmit);const FormContainerWithFormValidation135khou=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"ARzM1mlDp\",override:withFormValidation,scopeId:\"ITsdJ5xD3\"});const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"kpyVQ2Qua\",\"emHDWvhkE\",\"o0Qr8NUNE\",\"T6JHjvHkF\",\"sMwBX7NuR\",\"hr0h1BY1C\",\"DC10EIeQN\",\"y0oCtJpN2\",\"PXOaqbgoi\",\"uv8OcY2Pm\"];const serializationHash=\"framer-27ZOB\";const variantClassNames={DC10EIeQN:\"framer-v-s9u88y\",emHDWvhkE:\"framer-v-2o03yc\",hr0h1BY1C:\"framer-v-1aq2tgy\",kpyVQ2Qua:\"framer-v-1edexgb\",o0Qr8NUNE:\"framer-v-bao2ol\",PXOaqbgoi:\"framer-v-1pxt5in\",sMwBX7NuR:\"framer-v-o4u95i\",T6JHjvHkF:\"framer-v-1pbwdrk\",uv8OcY2Pm:\"framer-v-1q5vf20\",y0oCtJpN2:\"framer-v-1khzzim\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Focus Stacked\":\"hr0h1BY1C\",\"Idle Stacked Uncontained Focus\":\"PXOaqbgoi\",\"Idle Stacked Uncontained Loading\":\"uv8OcY2Pm\",\"Idle Stacked Uncontained\":\"y0oCtJpN2\",\"Idle Stacked\":\"sMwBX7NuR\",\"Loading Stacked\":\"DC10EIeQN\",Focus:\"emHDWvhkE\",Idle:\"kpyVQ2Qua\",Loading:\"o0Qr8NUNE\",Success:\"T6JHjvHkF\"};const getProps=({autoFocus,cTA,height,id,placeholder,width,...props})=>{return{...props,ILRUYyvSs:placeholder??props.ILRUYyvSs??\"Your Work Email\",REZX3ipq9:cTA??props.REZX3ipq9??\"Try for free\",RWGVWiSU2:autoFocus??props.RWGVWiSU2,variant:humanReadableVariantMap[props.variant]??props.variant??\"kpyVQ2Qua\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,ILRUYyvSs,REZX3ipq9,RWGVWiSU2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kpyVQ2Qua\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onLoading1y3ez6w=activeVariantCallback(async(...args)=>{setVariant(\"o0Qr8NUNE\");});const onSuccess1n2p4ye=activeVariantCallback(async(...args)=>{setVariant(\"T6JHjvHkF\");});const onLoading1cfste3=activeVariantCallback(async(...args)=>{setVariant(\"DC10EIeQN\");});const onLoadingur0k3=activeVariantCallback(async(...args)=>{setVariant(\"uv8OcY2Pm\");});const onFocus11sk0i2=activeVariantCallback(async(...args)=>{setVariant(\"emHDWvhkE\");});const onBlur26ypn8=activeVariantCallback(async(...args)=>{setVariant(\"kpyVQ2Qua\");});const onFocush9pif3=activeVariantCallback(async(...args)=>{setVariant(\"hr0h1BY1C\");});const onBlur1uo8rz1=activeVariantCallback(async(...args)=>{setVariant(\"sMwBX7NuR\");});const onFocus1gwdpxk=activeVariantCallback(async(...args)=>{setVariant(\"PXOaqbgoi\");});const onBlurw6q94g=activeVariantCallback(async(...args)=>{setVariant(\"y0oCtJpN2\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"T6JHjvHkF\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"T6JHjvHkF\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1edexgb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Idle\",layoutDependency:layoutDependency,layoutId:\"kpyVQ2Qua\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(227, 227, 227)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0.7563822798474575px 0.7563822798474575px -0.75px rgba(0, 0, 0, 0.07), 0px 2.293780835949292px 2.293780835949292px -1.5px rgba(0, 0, 0, 0.06), 0px 6.063520845410238px 6.063520845410238px -2.25px rgba(0, 0, 0, 0.06), 0px 19px 19px -3px rgba(0, 0, 0, 0.04)\",...style},variants:{DC10EIeQN:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},emHDWvhkE:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-88c94126-8d08-4d70-ad93-089fe72c39c1, rgb(18, 97, 235))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-top-width\":\"2px\",boxShadow:\"0px 0px 0px 3px rgba(18, 97, 235, 0.1), 0px 0.7563822798474575px 0.7563822798474575px -0.75px rgba(0, 0, 0, 0.07), 0px 2.293780835949292px 2.293780835949292px -1.5px rgba(0, 0, 0, 0.06), 0px 6.063520845410238px 6.063520845410238px -2.25px rgba(0, 0, 0, 0.06), 0px 19px 19px -3px rgba(0, 0, 0, 0.04)\"},hr0h1BY1C:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},PXOaqbgoi:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},sMwBX7NuR:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},uv8OcY2Pm:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},y0oCtJpN2:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({DC10EIeQN:{\"data-framer-name\":\"Loading Stacked\"},emHDWvhkE:{\"data-framer-name\":\"Focus\"},hr0h1BY1C:{\"data-framer-name\":\"Focus Stacked\"},o0Qr8NUNE:{\"data-framer-name\":\"Loading\"},PXOaqbgoi:{\"data-framer-name\":\"Idle Stacked Uncontained Focus\"},sMwBX7NuR:{\"data-framer-name\":\"Idle Stacked\"},T6JHjvHkF:{\"data-framer-name\":\"Success\"},uv8OcY2Pm:{\"data-framer-name\":\"Idle Stacked Uncontained Loading\"},y0oCtJpN2:{\"data-framer-name\":\"Idle Stacked Uncontained\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(FormContainerWithFormValidation135khou,{action:\"https://api.framer.com/forms/v1/forms/170418fd-4de4-418d-889a-ba5e83b100a9/submit\",className:\"framer-135khou\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ARzM1mlDp\",nodeId:\"ARzM1mlDp\",onLoading:onLoading1y3ez6w,onSuccess:onSuccess1n2p4ye,redirectUrl:{webPageId:\"KGAo176Mn\"},...addPropertyOverrides({DC10EIeQN:{onLoading:onLoading1cfste3},hr0h1BY1C:{onLoading:onLoading1cfste3},PXOaqbgoi:{onLoading:onLoadingur0k3},sMwBX7NuR:{onLoading:onLoading1cfste3},uv8OcY2Pm:{onLoading:onLoadingur0k3},y0oCtJpN2:{onLoading:onLoadingur0k3}},baseVariant,gestureVariant),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-1il7rhw\",layoutDependency:layoutDependency,layoutId:\"m8eW2vdag\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-5f2b0n\",inputName:\"email\",layoutDependency:layoutDependency,layoutId:\"rkKWHC1ZV\",onFocus:onFocus11sk0i2,placeholder:ILRUYyvSs,required:true,style:{\"--framer-input-background\":\"rgba(255, 255, 255, 0.15)\",\"--framer-input-font-color\":\"rgb(0, 0, 0)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-019ac301-73c6-46eb-9851-3eb602913d3e, rgb(154, 160, 176))\"},type:\"email\",variants:{DC10EIeQN:{\"--framer-input-background\":\"var(--token-1f9aa3eb-7f68-44ad-9aef-f13acb355d55, rgb(250, 250, 250))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"},hr0h1BY1C:{\"--framer-input-background\":\"var(--token-1f9aa3eb-7f68-44ad-9aef-f13acb355d55, rgb(250, 250, 250))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"},PXOaqbgoi:{\"--framer-input-background\":\"var(--token-2c83bbc9-4aad-48de-94d9-017d5ea6c182, rgb(255, 255, 255))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"},sMwBX7NuR:{\"--framer-input-background\":\"var(--token-1f9aa3eb-7f68-44ad-9aef-f13acb355d55, rgb(250, 250, 250))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"},uv8OcY2Pm:{\"--framer-input-background\":\"var(--token-2c83bbc9-4aad-48de-94d9-017d5ea6c182, rgb(255, 255, 255))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"},y0oCtJpN2:{\"--framer-input-background\":\"var(--token-2c83bbc9-4aad-48de-94d9-017d5ea6c182, rgb(255, 255, 255))\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\"}},...addPropertyOverrides({DC10EIeQN:{onFocus:onFocush9pif3},emHDWvhkE:{onBlur:onBlur26ypn8},hr0h1BY1C:{onBlur:onBlur1uo8rz1,onFocus:onFocush9pif3},PXOaqbgoi:{onBlur:onBlurw6q94g,onFocus:onFocus1gwdpxk},sMwBX7NuR:{autoFocus:RWGVWiSU2,onFocus:onFocush9pif3},uv8OcY2Pm:{onFocus:onFocus1gwdpxk},y0oCtJpN2:{autoFocus:RWGVWiSU2,onFocus:onFocus1gwdpxk}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+8+0+0,...addPropertyOverrides({DC10EIeQN:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:undefined},hr0h1BY1C:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:undefined},PXOaqbgoi:{width:componentViewport?.width||\"100vw\",y:undefined},sMwBX7NuR:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:undefined},uv8OcY2Pm:{width:componentViewport?.width||\"100vw\",y:undefined},y0oCtJpN2:{width:componentViewport?.width||\"100vw\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ejc7we-container\",layoutDependency:layoutDependency,layoutId:\"UEMS0C1Wi-container\",nodeId:\"UEMS0C1Wi\",rendersWithMotion:true,scopeId:\"ITsdJ5xD3\",children:/*#__PURE__*/_jsx(ButtonSubmit,{height:\"100%\",id:\"UEMS0C1Wi\",layoutId:\"UEMS0C1Wi\",type:\"submit\",variant:\"UP51XDvnM\",WbCU72e0C:REZX3ipq9,width:\"100%\",...addPropertyOverrides({DC10EIeQN:{style:{width:\"100%\"},variant:\"dpTfMxbyW\"},hr0h1BY1C:{style:{width:\"100%\"}},o0Qr8NUNE:{variant:\"dpTfMxbyW\"},PXOaqbgoi:{style:{width:\"100%\"}},sMwBX7NuR:{style:{width:\"100%\"}},uv8OcY2Pm:{style:{width:\"100%\"},variant:\"dpTfMxbyW\"},y0oCtJpN2:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dUIFdhbHNoZWltIFBybyBNZWRpdW0=\",\"--framer-font-family\":'\"GT Walsheim Pro Medium\", \"GT Walsheim Pro Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(122, 122, 122))\"},children:\"Just a moment…\"})}),className:\"framer-1wuejwl\",fonts:[\"CUSTOM;GT Walsheim Pro Medium\"],layoutDependency:layoutDependency,layoutId:\"IapyOzaff\",style:{\"--extracted-r6o4lv\":\"rgb(122, 122, 122)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12xczvs\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"tyiJcVY1b\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ekql9c\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ktPCRdmdO\",style:{backgroundColor:\"rgb(204, 204, 204)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kezdnx\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"gWSFJbVCK\",style:{backgroundColor:\"rgb(115, 115, 115)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-27ZOB.framer-xst5ka, .framer-27ZOB .framer-xst5ka { display: block; }\",\".framer-27ZOB.framer-1edexgb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 8px 8px 16px; position: relative; width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-27ZOB .framer-135khou { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-27ZOB .framer-1il7rhw { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; padding: 0px; position: relative; width: 1px; }\",'.framer-27ZOB .framer-5f2b0n { --framer-input-font-family: \"GT Walsheim Pro Regular\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 18px; --framer-input-padding: 0px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }',\".framer-27ZOB .framer-ejc7we-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-27ZOB .framer-1wuejwl { flex: none; height: 40px; position: relative; white-space: pre; width: auto; }\",\".framer-27ZOB .framer-12xczvs { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 20px; }\",\".framer-27ZOB .framer-ekql9c { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-27ZOB .framer-kezdnx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 12px; }\",\".framer-27ZOB.framer-v-1pbwdrk.framer-1edexgb { flex-direction: row; gap: 8px; justify-content: center; padding: 8px; width: min-content; }\",\".framer-27ZOB.framer-v-1pbwdrk .framer-1wuejwl { order: 4; }\",\".framer-27ZOB.framer-v-1pbwdrk .framer-12xczvs { height: var(--framer-aspect-ratio-supported, 20px); order: 3; }\",\".framer-27ZOB.framer-v-1pbwdrk .framer-kezdnx { height: var(--framer-aspect-ratio-supported, 12px); }\",\".framer-27ZOB.framer-v-o4u95i.framer-1edexgb, .framer-27ZOB.framer-v-1aq2tgy.framer-1edexgb, .framer-27ZOB.framer-v-s9u88y.framer-1edexgb { justify-content: center; padding: 12px; }\",\".framer-27ZOB.framer-v-o4u95i .framer-135khou, .framer-27ZOB.framer-v-1aq2tgy .framer-135khou, .framer-27ZOB.framer-v-s9u88y .framer-135khou, .framer-27ZOB.framer-v-1khzzim .framer-135khou, .framer-27ZOB.framer-v-1pxt5in .framer-135khou, .framer-27ZOB.framer-v-1q5vf20 .framer-135khou { flex-direction: column; }\",\".framer-27ZOB.framer-v-o4u95i .framer-1il7rhw, .framer-27ZOB.framer-v-1aq2tgy .framer-1il7rhw, .framer-27ZOB.framer-v-s9u88y .framer-1il7rhw, .framer-27ZOB.framer-v-1khzzim .framer-1il7rhw, .framer-27ZOB.framer-v-1pxt5in .framer-1il7rhw, .framer-27ZOB.framer-v-1q5vf20 .framer-1il7rhw { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-27ZOB.framer-v-o4u95i .framer-5f2b0n, .framer-27ZOB.framer-v-1aq2tgy .framer-5f2b0n, .framer-27ZOB.framer-v-s9u88y .framer-5f2b0n, .framer-27ZOB.framer-v-1khzzim .framer-5f2b0n, .framer-27ZOB.framer-v-1pxt5in .framer-5f2b0n, .framer-27ZOB.framer-v-1q5vf20 .framer-5f2b0n { --framer-input-focused-border-color: var(--token-3ca57bc8-44af-4346-acef-fc136fca92a0, #1260eb); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-focused-box-shadow: 0px 0px 0px 3px rgba(18, 97, 235, 0.1); --framer-input-focused-transition: all 0.3s cubic-bezier(0,0,1,1) 0s; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; flex: none; height: auto; }\",\".framer-27ZOB.framer-v-o4u95i .framer-ejc7we-container, .framer-27ZOB.framer-v-1aq2tgy .framer-ejc7we-container, .framer-27ZOB.framer-v-s9u88y .framer-ejc7we-container, .framer-27ZOB.framer-v-1khzzim .framer-ejc7we-container, .framer-27ZOB.framer-v-1pxt5in .framer-ejc7we-container, .framer-27ZOB.framer-v-1q5vf20 .framer-ejc7we-container { width: 100%; }\",\".framer-27ZOB.framer-v-1khzzim.framer-1edexgb, .framer-27ZOB.framer-v-1pxt5in.framer-1edexgb, .framer-27ZOB.framer-v-1q5vf20.framer-1edexgb { justify-content: center; overflow: visible; padding: 0px; will-change: unset; }\",'.framer-27ZOB[data-border=\"true\"]::after, .framer-27ZOB [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 59\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"emHDWvhkE\":{\"layout\":[\"fixed\",\"auto\"]},\"o0Qr8NUNE\":{\"layout\":[\"fixed\",\"auto\"]},\"T6JHjvHkF\":{\"layout\":[\"auto\",\"auto\"]},\"sMwBX7NuR\":{\"layout\":[\"fixed\",\"auto\"]},\"hr0h1BY1C\":{\"layout\":[\"fixed\",\"auto\"]},\"DC10EIeQN\":{\"layout\":[\"fixed\",\"auto\"]},\"y0oCtJpN2\":{\"layout\":[\"fixed\",\"auto\"]},\"PXOaqbgoi\":{\"layout\":[\"fixed\",\"auto\"]},\"uv8OcY2Pm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ILRUYyvSs\":\"placeholder\",\"REZX3ipq9\":\"cTA\",\"RWGVWiSU2\":\"autoFocus\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerITsdJ5xD3=withCSS(Component,css,\"framer-27ZOB\");export default FramerITsdJ5xD3;FramerITsdJ5xD3.displayName=\"Main CTA Input\";FramerITsdJ5xD3.defaultProps={height:59,width:460};addPropertyControls(FramerITsdJ5xD3,{variant:{options:[\"kpyVQ2Qua\",\"emHDWvhkE\",\"o0Qr8NUNE\",\"T6JHjvHkF\",\"sMwBX7NuR\",\"hr0h1BY1C\",\"DC10EIeQN\",\"y0oCtJpN2\",\"PXOaqbgoi\",\"uv8OcY2Pm\"],optionTitles:[\"Idle\",\"Focus\",\"Loading\",\"Success\",\"Idle Stacked\",\"Focus Stacked\",\"Loading Stacked\",\"Idle Stacked Uncontained\",\"Idle Stacked Uncontained Focus\",\"Idle Stacked Uncontained Loading\"],title:\"Variant\",type:ControlType.Enum},ILRUYyvSs:{defaultValue:\"Your Work Email\",title:\"Placeholder\",type:ControlType.String},REZX3ipq9:{defaultValue:\"Try for free\",displayTextArea:false,title:\"CTA\",type:ControlType.String},RWGVWiSU2:{defaultValue:false,title:\"Auto Focus\",type:ControlType.Boolean}});addFonts(FramerITsdJ5xD3,[{explicitInter:true,fonts:[{family:\"GT Walsheim Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/A7OuxelhqpHzYKrI2ZDUVrvKC1o.ttf\"},{family:\"GT Walsheim Pro Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/rRh32X8bMfg8PSgh8CYQrmDbwU.ttf\"}]},...ButtonSubmitFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerITsdJ5xD3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"emHDWvhkE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o0Qr8NUNE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T6JHjvHkF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sMwBX7NuR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hr0h1BY1C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DC10EIeQN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y0oCtJpN2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PXOaqbgoi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uv8OcY2Pm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"460\",\"framerIntrinsicHeight\":\"59\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"ILRUYyvSs\\\":\\\"placeholder\\\",\\\"REZX3ipq9\\\":\\\"cTA\\\",\\\"RWGVWiSU2\\\":\\\"autoFocus\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ITsdJ5xD3.map"],"mappings":"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"}