﻿
.camera-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  pointer-events: none;
}

.instruction {
  color: white;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 50px;
  border-radius: 5px;
  pointer-events: auto;
}

.camera-frame {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 77%;
  height: 26%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  pointer-events: none;
}

.id-frame {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 77%;
  height: 27%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  pointer-events: none;
}

.face-frame {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 70vw;
  height: 90vw;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.capture-button {
  width: 90%;
  margin-bottom: 125px!important;
  pointer-events: auto;
}
