:root { --neon-green: #39ff14; --neon-cyan: #00f0ff; } body { background: #000; color: #d1d5db; font-family: 'Outfit', sans-serif; overflow: hidden; height: 100vh; margin: 0; background-image: radial-gradient(circle at 0% 0%, #001f1f 0%, transparent 40%), radial-gradient(circle at 100% 100%, #0a1f0a 0%, transparent 40%), radial-gradient(circle at 50% 50%, #050505 0%, #000 100%); display: flex; /* Added back for centering */ align-items: center; /* Added back for centering */ justify-content: center; /* Added back for centering */ } .glass-card { background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(40px); border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8); } .input-field { background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; color: #fff !important; transition: all 0.3s ease; } .input-field:focus { border-color: #39ff14; box-shadow: 0 0 15px rgba(57, 255, 20, 0.1); outline: none; } .font-tech { font-family: 'JetBrains Mono', monospace; } .pulse-text { animation: pulse 2s infinite; } @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
Secure Forensic Environment