|
|
|
|
@ -34,11 +34,8 @@ export default function Footer() {
|
|
|
|
|
required
|
|
|
|
|
value={email}
|
|
|
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
|
|
|
className="w-full px-4 py-2 rounded-lg text-white outline-none"
|
|
|
|
|
className="w-full px-4 py-2 rounded-lg text-white outline-none transition-all"
|
|
|
|
|
style={{ backgroundColor: '#7D6E5E', borderColor: '#7D6E5E', color: '#FBF7F4' }}
|
|
|
|
|
placeholder="Email*"
|
|
|
|
|
onFocus={(e) => { e.target.style.borderColor = '#EED2CC'; e.target.style.boxShadow = '0 0 0 2px rgba(238, 210, 204, 0.3)'; }}
|
|
|
|
|
onBlur={(e) => { e.target.style.borderColor = '#7D6E5E'; e.target.style.boxShadow = 'none'; }}
|
|
|
|
|
/>
|
|
|
|
|
<div className="flex items-center space-x-2">
|
|
|
|
|
<input
|
|
|
|
|
|