larxius commited on
Commit
4a643ec
·
verified ·
1 Parent(s): 4447a5f

Update frontend/src/pages/Register.jsx

Browse files
Files changed (1) hide show
  1. frontend/src/pages/Register.jsx +6 -6
frontend/src/pages/Register.jsx CHANGED
@@ -77,10 +77,10 @@ export const Register = () => {
77
  {/* Left Side: Branding & Visual Context */}
78
  <div className="hidden lg:flex w-5/12 bg-white flex-col justify-between p-12 relative overflow-hidden shrink-0 border-r border-slate-200">
79
 
80
- {/* Background Gradients */}
81
  <div className="absolute inset-0 overflow-hidden pointer-events-none z-0">
82
- <div className="absolute top-[-10%] left-[-20%] w-[600px] h-[600px] rounded-full bg-blue-100/50 blur-[120px] animate-float"></div>
83
- <div className="absolute bottom-[10%] right-[-10%] w-[400px] h-[400px] rounded-full bg-indigo-100/50 blur-[100px] animate-float-delayed"></div>
84
  </div>
85
 
86
  {/* Brand Anchor */}
@@ -100,13 +100,13 @@ export const Register = () => {
100
  <span>Enterprise Security Suite</span>
101
  </div>
102
 
103
- {/* Seamless 3D Shield Podium Graphic with Radial Mask */}
104
- <div className="mb-6 flex justify-center lg:justify-start relative group">
105
  <div className="absolute inset-0 bg-blue-500/10 rounded-full blur-2xl transform scale-75 group-hover:scale-90 transition-transform duration-500"></div>
106
  <img
107
  src="/shield-3d-podium.png"
108
  alt="LarShield Enterprise 3D Podium"
109
- className="w-80 max-w-full h-auto object-contain mix-blend-multiply drop-shadow-xl relative z-10 transform group-hover:scale-105 transition-transform duration-500 [mask-image:radial-gradient(circle_at_center,black_65%,transparent_98%)]"
110
  />
111
  </div>
112
 
 
77
  {/* Left Side: Branding & Visual Context */}
78
  <div className="hidden lg:flex w-5/12 bg-white flex-col justify-between p-12 relative overflow-hidden shrink-0 border-r border-slate-200">
79
 
80
+ {/* Background Gradients - Shifted to edges for pure crisp white image canvas */}
81
  <div className="absolute inset-0 overflow-hidden pointer-events-none z-0">
82
+ <div className="absolute top-[-20%] right-[-20%] w-[500px] h-[500px] rounded-full bg-blue-50/40 blur-[140px]"></div>
83
+ <div className="absolute bottom-[-10%] left-[-20%] w-[400px] h-[400px] rounded-full bg-indigo-50/40 blur-[120px]"></div>
84
  </div>
85
 
86
  {/* Brand Anchor */}
 
100
  <span>Enterprise Security Suite</span>
101
  </div>
102
 
103
+ {/* Seamless 3D Shield Podium Graphic - Shifted right & zero background mismatch */}
104
+ <div className="mb-6 flex justify-center lg:justify-center relative group pl-4 lg:pl-8">
105
  <div className="absolute inset-0 bg-blue-500/10 rounded-full blur-2xl transform scale-75 group-hover:scale-90 transition-transform duration-500"></div>
106
  <img
107
  src="/shield-3d-podium.png"
108
  alt="LarShield Enterprise 3D Podium"
109
+ className="w-80 max-w-full h-auto object-contain mix-blend-multiply drop-shadow-xl relative z-10 transform group-hover:scale-105 transition-transform duration-500 [mask-image:radial-gradient(circle_at_center,black_50%,transparent_85%)]"
110
  />
111
  </div>
112