input{
    width: 90%;
    /* height: 3em; */
    font-size: 30px;
    border: aqua;
}
#hide{
    display: none;
}
body{
    height: 100%;
    width: 100%;
}

.video-container {
position: relative;
width: 640px;   /* カメラ表示の横幅 */
height: 480px;  /* カメラ表示の高さ */
overflow: hidden;
}

/* カメラ映像 */
.video-container video {
width: 100%;
height: 100%;
object-fit: cover; /* アスペクト比を維持して中央表示 */
}

/* 中央の赤枠 */
.video-container .overlay {
position: absolute;
top: 50%;
left: 50%;
width: 50%;     /* フレームの横幅をコンテナの50% に設定 */
height: 50%;    /* フレームの縦幅をコンテナの50% に設定 */
transform: translate(-50%, -50%);
border: 2px solid red;
box-sizing: border-box;
pointer-events: none; /* 枠にマウスイベントが当たらないように */
}