import { useState } from "react"; export default function EliteTrial() { const [tab, setTab] = useState("login"); return (

NDSP

Elite Trial Access

Restricted access. Authorized personnel only.

); } const styles = { wrapper: { height: "100vh", background: "#0a0f1c", display: "flex", justifyContent: "center", alignItems: "center", fontFamily: "sans-serif", }, card: { width: "400px", background: "#111827", padding: "30px", borderRadius: "12px", border: "1px solid #1f2937", boxShadow: "0 0 40px rgba(0,0,0,0.6)", }, header: { textAlign: "center", marginBottom: "20px", }, title: { color: "#fff", margin: "10px 0", }, subtitle: { color: "#6b7280", fontSize: "14px", }, tabs: { display: "flex", marginBottom: "20px", }, tab: { flex: 1, padding: "10px", background: "#1f2937", color: "#9ca3af", border: "none", cursor: "pointer", }, activeTab: { flex: 1, padding: "10px", background: "#2563eb", color: "#fff", border: "none", cursor: "pointer", }, form: { display: "flex", flexDirection: "column", gap: "10px", }, input: { padding: "10px", background: "#0f172a", border: "1px solid #1f2937", color: "#fff", borderRadius: "6px", }, button: { marginTop: "10px", padding: "12px", background: "#2563eb", color: "#fff", border: "none", borderRadius: "6px", cursor: "pointer", }, };