@@ -156,19 +156,19 @@ export function VerifyOTPForm({
156156 </ Link >
157157
158158 < Link className = "flex mx-auto size-fit" href = "/" >
159- < LogoBadge className = "w-[72px] h-[72px] " />
159+ < LogoBadge className = "size-12 " />
160160 </ Link >
161161
162162 < div className = "flex flex-col justify-center items-center my-7 text-center" >
163- < h1 className = "text-2xl font-semibold text-gray-12" >
163+ < h1 className = "text-xl font-semibold text-gray-12" >
164164 Enter verification code
165165 </ h1 >
166- < p className = "text-[16px] text-gray-10 mt-2 " >
166+ < p className = "text-sm text-gray-10" >
167167 We sent a 6-digit code to { email }
168168 </ p >
169169 </ div >
170170
171- < div className = "flex gap-2 justify-center mb-6 " >
171+ < div className = "flex flex-1 gap-2 justify-between mb-5 " >
172172 { code . map ( ( digit , index ) => (
173173 < input
174174 key = { index . toString ( ) }
@@ -191,7 +191,7 @@ export function VerifyOTPForm({
191191 . replace ( / \D / g, "" ) ;
192192 handleChange ( 0 , pastedData ) ;
193193 } }
194- className = "w-12 h-14 text-xl font-semibold text-center rounded-lg border transition-all bg-gray-1 border-gray-5 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
194+ className = "flex-1 h-[52px] text-xl font-semibold text-center rounded-lg border transition-all bg-gray-1 border-gray-5 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
195195 disabled = { handleVerify . isPending || handleVerify . isSuccess }
196196 />
197197 ) ) }
@@ -221,7 +221,7 @@ export function VerifyOTPForm({
221221 </ div >
222222
223223 < p className = "mt-6 text-xs text-center text-gray-9" >
224- By verifying your email, you acknowledge that you have both read and
224+ By entering your email, you acknowledge that you have both read and
225225 agree to Cap's{ " " }
226226 < Link
227227 href = "/terms"
0 commit comments