/* Basic page styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #c0eaff;
  z-index: -1;
}

.bg-shape.top {
  top: -100px;
  left: -100px;
}

.bg-shape.bottom {
  bottom: -200px;
  right: -200px;
}

.card {
  display: flex;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 900px;
  width: 100%;
}

/* LEFT section */
.left {
  padding: 150px;
  flex: 1;
}

.left h1 {
  margin: 0 0 20px 0;
}

.left p {
  margin: 0 0 30px 0;
}

.left button {
  padding: 10px 25px;
  font-size: 16px;
  background: #00aaff;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

/* RIGHT section */
.right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e0f7ff;
}

.face-box {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.face {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* Your scan-frame image */
.scan-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;   /* adjust size as needed */
  height: 200px;  /* adjust size as needed */
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  object-fit: cover;
}