@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --bg: #f6f7fb;
  --text: #111827;
  --muted: #6b7280;
--grid-purple: rgba(255, 255, 255, 0.8);
--grid-blue: rgba(255, 255, 255, 0.8);
  --glow-purple: rgba(147, 51, 234, 0.2);
  --glow-blue: rgba(59, 130, 246, 0.16);

  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: var(--bg);
 background-image:
  linear-gradient(rgba(255,255,255,0.28) 1.5px, transparent 1.5px),
  linear-gradient(90deg, rgba(255,255,255,0.28) 1.5px, transparent 1.5px),
  radial-gradient(1200px 600px at 50% -10%, rgba(147,51,234,0.22), rgba(59,130,246,0.18) 60%, transparent 78%);

background-size: 110px 110px, 110px 110px, cover;
  background-attachment: fixed;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: 12px;
}

.container {
  text-align: center;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
}

.logo {
  margin-bottom: 32px;
}

.logo img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
}

h1 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
}

p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}