@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


body {
  font-family: "Ubuntu", sans-serif;
}

.custom-form{
  background-color: white;
}

.camera-container {
  background-color: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: relative;
}

.camera-container video,
.camera-container img {
  background-color: #000;
  border-radius: 15px;
}

#preview-container {
  background-color: #f8f9fa;
  border-radius: 15px;
}

#crop-container {
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

#crop-image {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.face-guide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.face-outline {
  width: 200px;
  height: 200px;
  border: 2px dashed #0d6efd;
  border-radius: 50%;
  position: relative;
}

.face-outline::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(13, 110, 253, 0.2);
  border-radius: 50%;
}

.face-instructions {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #0d6efd;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px;
  border-radius: 8px;
  font-weight: 500;
}

.face-instructions i {
  margin-right: 8px;
}

.cropper-container {
  width: 100% !important;
  height: 100% !important;
}

.cropper-wrap-box {
  background-color: #f8f9fa;
}

.cropper-view-box {
  outline: 1px solid #0d6efd;
}

.cropper-point {
  background-color: #0d6efd;
}

.cropper-line {
  background-color: #0d6efd;
}

.alert-info {
  background-color: #e8f4ff;
  border-color: #b8daff;
  color: #004085;
}

.alert-info .alert-heading {
  color: #0d6efd;
}

.alert-info ul {
  padding-left: 20px;
}

.alert-info li {
  margin-bottom: 5px;
}

.webcam{
  border-radius: 100%;
}

