/* student id photo css start  */

.studentIDCardContainer {
  width: 90vw;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.samplePart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #02022d17;
}
.idSample {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.idSample > div {
  flex: 1 1 50%;
}
.sampleText {
  font-size: clamp(1.2rem, 20vw, 1.5rem);
  font-weight: 600;
  padding: 0.2rem;
  text-align: center;
}
.exampleIDPhoto {
  display: flex;
  justify-content: space-evenly;
}
.idPhotoImage {
  width: 50%;
  aspect-ratio: 4/5;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.boldSectionHeader {
  font-weight: 600;
  font-size: clamp(2rem, 20vw, 2.5rem);
}
/* student id photo css end  */

/* data input part css start  */

.dataInputPart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input.cascID {
  font-size: clamp(1.2rem, 20vw, 1.5rem);
}
input.cascID::placeholder {
  color: black;
}
.studentIDPhotoImage {
  width: 100%;
  aspect-ratio: 3/4;
  background: #05054738;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
.errorInputSMS {
  display: flex;
  justify-content: space-evenly;
  font-weight: 600;
  color: red;
}
.studentIdCardActionBtns {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
  gap: 0.5rem;
}
.studentIdCardActionBtns > div {
  flex: 1 1 30%;
}

/* data input part css end  */

/* crop section start  */

section.imageCropSection {
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 99;
  display: none;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
  overflow: auto;
  flex-direction: column;
}
.imageCropContainer {
  width: 90vw;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.previewImageStudentIDCard {
  background-position: center;
  background-size: auto 100%;
  width: 100%;
  aspect-ratio: 4/5;
  background-repeat: no-repeat;
  background-color: #01012f2e;
  overflow: hidden;
  max-height: 60vh;
}
.controlBtnsArea {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.controlBtnsArea > div {
  flex: 1 1 30%;
}
img.previewImageStudentIDCardImage.cropper-hidden {
  width: 100%;
  object-fit: cover !important;
  height: 100% !important;
}
.editHeadline {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}
.btn.crop {
  margin: 1rem auto 10rem auto;
  width: 100%;
}
img.previewImageStudentIDCardImage {
  width: 100%;
  height: 100%;
}

/* crop section end  */

/* video section start */

section.cameraVideoDisplaySection {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  overflow: auto;
  background-color: white;
  z-index: 99;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
.cameraVideoDisplayContainer {
  position: relative;
  width: 90vw;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.studentCameraSelectHeadline {
  text-align: center;
  font-size: clamp(0.8rem, 4vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.videoContainer {
  background-color: #01011c24;
  display: flex;
  justify-content: space-evenly;
  padding: 0.5rem;
}
video.studentCameraVideo {
  width: 60%;
  aspect-ratio: 4/5;
  border: 1px solid black;
  object-fit: cover;
}
.closeWindow.btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
}
.btn.takePhoto {
  margin-bottom: 5rem;
}
@media screen and (min-width: 992px) {
  video.studentCameraVideo {
    width: 25%;
    aspect-ratio: 4/5;
    border: 1px solid;
  }
}

/* video section end */
