.main-section{
   
  position:relative;
  z-index:2;
  width:100%;
  min-height:100vh;
  display:flex;
  gap:70px;
  align-items:center;
  justify-content:center;
  padding:40px;
}

/* FORM BOX */
.table-box{
  padding:34px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(4px);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 10px 35px rgba(0,0,0,0.5),
    0 0 25px rgba(230, 230, 230, 0.877);

  width:100%;
  max-width:480px;
  transition:.35s;
}

.table-box:hover{
  transform:translateY(-6px);
}

/* PROGRESS */
.progress-wrap{margin-bottom:30px;}
.progress-text{
  font-size:14px;
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
  color:#ddd;
}
.progress-bar{
  height:8px;
  background:#111;
  border:1px solid #888;
}
.progress-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#777,#ccc);
}

/* TABLE */
table{width:100%;border-spacing:0 18px;}
th{text-align:left;padding-right:15px;color:#ddd;}
td{width:100%;}

/* INPUT */
input,textarea{
  width:100%;
  padding:14px;
  background:#111;
  border:1px solid #888;
  color:#eee;
  outline:none;
}
textarea{height:95px;}

input:focus,textarea:focus{
  background:#eee;
  color:#000;
}

/* BUTTON */
button{
  width:100%;
  padding:16px;
  background:#222;
  border:1px solid #aaa;
  color:#eee;
  cursor:pointer;
  transition:.3s;
}
button:hover{
  /* background:#ddd; */
  color:#000;
}

/* IMAGE */
.image-box{
  display:flex;
  justify-content:center;
  align-items:center;
}

.image-box img{
  width:420px;
  max-width:100%;
  height:auto;
  filter:grayscale(100%);
  transition:.5s;
}

.image-box img:hover{
  transform:translateY(-6px);
}

/* =========================
   📱 MOBILE (≤600px)
========================= */
@media (max-width:600px){

  body,html{
    overflow:auto; /* mobile scroll allow */
  }

  .main-section{
    flex-direction:column;
    gap:30px;
    padding:20px;
  }

  .table-box{
    padding:20px;
  }

  th{
    display:block;
    margin-bottom:6px;
  }

  tr{
    display:block;
  }

  .image-box img{
    width:100%;
    max-width:320px;
  }
}

/* =========================
   📲 TABLET / iPad (601px–1024px)
========================= */
@media (min-width:601px) and (max-width:1024px){

  .main-section{
    flex-direction:column;
    gap:10px;
    padding:30px;
  }

  .image-box img{
    max-width:380px;
  }
}

/* =========================
   💻 DESKTOP (≥1025px)
========================= */
@media (min-width:1025px){

  .main-section{
    flex-direction:row;
  }

  .image-box img{
    max-width:420px;
  }
}
.null{
  height:50px;
}
