#qualifications {
  display: flex;
  flex-wrap: wrap;
}

#qualifications .form-check {
  margin-right: 20px; /* Adjust as needed */
}


.image-box {
  width: 150px;
  height: 200px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}
.image-boxSign {
  width: 150px;
  height: 100px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}

.image-box img {
  width: 100%;
  height: auto;
}

.image-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.container {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.error-container {
  background-color: #ffdddd;
  border: 1px solid #ff3333;
  padding: 10px;
  margin-bottom: 10px;
}

.header {
  background-color: #0b90c5;
  color: #fff;
  text-align: center;
}

.footer {
  background-color: #343a40; /* Dark color for footer */
  color: #fff; /* Text color for footer */
  padding: 20px;
  text-align: center;
}

@media print {
  .print-button {
    display: none;
  }
}

/* Progressbar  */
/* Style for the modal */
.modal-progress-bar {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}


.modal-content-progress-bar {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
}

/* CAPTCHA */

.captcha-container {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 100px;
  background-color: cornflowerblue;
  background-size: cover;
  color: #fff;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#math-problem {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}
#user-answer {
  width: 80%;
  padding: 5px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  text-align: center;
}
#captchaBtn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 18px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#captchaBtn:hover {
  background-color: #218838;
}