/* assets/css/style.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f2f4f7;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle blurred radial glow */
body::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

body::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  padding: 3rem;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
