Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions src/app/pages/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,12 @@ export default function LoginPage() {
};

return (
<div className="min-h-screen py-12" style={{
<div className="min-h-screen py-8 sm:py-12" style={{
background: '#FAFAFA',
color: 'var(--text-primary)',
paddingLeft: 'clamp(24px, 5vw, 48px)',
paddingRight: 'clamp(24px, 5vw, 48px)'
paddingLeft: 'clamp(16px, 4vw, 48px)',
paddingRight: 'clamp(16px, 4vw, 48px)',
overflowX: 'hidden',
}}>
<div style={{
maxWidth: '1400px',
Expand Down Expand Up @@ -218,7 +219,7 @@ export default function LoginPage() {

{/* Title - Neutral, no "Welcome" */}
<h1 style={{
fontSize: '48px',
fontSize: 'clamp(32px, 6vw, 48px)',
fontWeight: 700,
lineHeight: '1.1',
marginBottom: '24px',
Expand Down Expand Up @@ -330,15 +331,15 @@ export default function LoginPage() {
</div>

{/* OAuth - Matte Gray Glass */}
<div
<div
className="relative overflow-hidden"
style={{
background: 'rgba(255, 255, 255, 0.7)',
backdropFilter: 'blur(12px)',
WebkitBackdropFilter: 'blur(12px)',
border: '1px solid rgba(229, 229, 229, 0.6)',
borderRadius: '16px',
padding: '24px',
padding: 'clamp(16px, 4vw, 24px)',
marginBottom: '24px',
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8)'
}}
Expand Down Expand Up @@ -431,15 +432,15 @@ export default function LoginPage() {
</div>

{/* Email/Password Form - Matte Gray Glass */}
<div
<div
className="relative overflow-hidden"
style={{
background: 'rgba(255, 255, 255, 0.7)',
backdropFilter: 'blur(12px)',
WebkitBackdropFilter: 'blur(12px)',
border: '1px solid rgba(229, 229, 229, 0.6)',
borderRadius: '16px',
padding: '24px',
padding: 'clamp(16px, 4vw, 24px)',
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8)'
}}
>
Expand Down
26 changes: 14 additions & 12 deletions src/app/pages/SignupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,13 @@ export default function SignupPage() {
};

return (
<div
className="min-h-screen px-8 py-20 relative overflow-hidden"
<div
className="min-h-screen py-12 sm:py-20 relative overflow-hidden"
style={{
fontFamily: 'Inter, sans-serif',
background: '#FAFAFA'
background: '#FAFAFA',
paddingLeft: 'clamp(16px, 4vw, 32px)',
paddingRight: 'clamp(16px, 4vw, 32px)',
}}
>
{/* Background Blobs */}
Expand All @@ -200,9 +202,9 @@ export default function SignupPage() {
</div>

<div className="max-w-[1280px] mx-auto relative z-10">
<div className="grid lg:grid-cols-2 gap-24 items-start">
<div className="grid lg:grid-cols-2 gap-12 lg:gap-24 items-start">
{/* Left: Value Proposition */}
<div className="pt-12">
<div className="pt-4 lg:pt-12">
<div className="inline-flex items-center gap-4 mb-16 group transition-all duration-200">
<div className="transition-transform group-hover:scale-105 duration-200">
<VspecLogo size={56} variant="accent" />
Expand All @@ -221,7 +223,7 @@ export default function SignupPage() {
<h1
className="mb-8"
style={{
fontSize: '56px',
fontSize: 'clamp(32px, 7vw, 56px)',
fontWeight: 700,
lineHeight: 1.1,
letterSpacing: '-0.02em',
Expand Down Expand Up @@ -334,8 +336,8 @@ export default function SignupPage() {
</div>

{/* OAuth */}
<div
className="p-8 rounded-2xl mb-10"
<div
className="p-5 sm:p-8 rounded-2xl mb-10"
style={{
background: '#FFFFFF',
border: '1px solid #E0E0E0',
Expand Down Expand Up @@ -432,8 +434,8 @@ export default function SignupPage() {
</div>

{/* DID Authentication - NEW ⭐ */}
<div
className="p-8 rounded-2xl mb-10"
<div
className="p-5 sm:p-8 rounded-2xl mb-10"
style={{
background: 'linear-gradient(135deg, rgba(124, 133, 237, 0.08) 0%, rgba(124, 133, 237, 0.03) 100%)',
border: '2px solid rgba(124, 133, 237, 0.3)',
Expand Down Expand Up @@ -521,8 +523,8 @@ export default function SignupPage() {
</div>

{/* Email Signup Form */}
<div
className="p-8 rounded-2xl"
<div
className="p-5 sm:p-8 rounded-2xl"
style={{
background: '#FFFFFF',
border: '1px solid #E0E0E0',
Expand Down