/* ===================================================
  nama file: /root/public/form-ujian/form-ujian.css
====================================================*/

body {
  background-image: url("/images/umum/banner-depan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.form-ujian-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  background: rgba(249, 249, 249, 0.9);
  padding: 2rem;
  border-radius: 1rem;
}

.form-ujian-judul {
  text-align: center;
  color: #147574;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.form-ujian-judul span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 4px;
}

.form-ujian-gambar img {
  width: 100%;
  display: block;
  border-radius: 12px;
  margin-top: 16px;
}

.form-ujian-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #147574;
}

.form-ujian-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 14px;
  border-radius: 24px;
  border: 1.5px solid #d1d5db;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  background: transparent;
  transition: border-color 0.2s;
}

.form-ujian-input:focus {
  border-color: #147574;
}

.form-ujian-info {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #147574;
  padding-left: 1.25rem; /* ruang untuk bullet */
}

.form-ujian-info li {
  margin-bottom: 4px;
}

.form-ujian-tombol {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 24px;
  background: #147574;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.1s;
}

.form-ujian-tombol:hover {
  background: #0f5f5e;
}
.form-ujian-tombol:active {
  transform: scale(0.98);
}
.form-ujian-tombol:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-ujian-tombol img {
  width: 18px;
  height: 18px;
}

.form-ujian-loading {
  display: none;
  margin-top: 1.5rem;
  text-align: center;
}

.form-ujian-loading p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #147574;
  margin-bottom: 8px;
}

.form-ujian-progres {
  width: 100%;
  height: 5px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.form-ujian-progres-isi {
  height: 100%;
  width: 0%;
  background: #147574;
}

.form-ujian-kuota {
  font-size: 13px;
  color: #147574;
  text-align: center;
  margin: 14px auto 0;
  font-weight: 600;
  background: #f0fafa;
  border: 1px solid #c7e8e8;
  padding: 6px 18px;
  border-radius: 8px;
  width: fit-content;
}

.form-ujian-setuju {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 24px;
  border: 1.5px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-ujian-setuju:has(#checkSetuju:checked) {
  border-color: #147574;
}
.form-ujian-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
}
.form-ujian-checkbox:checked {
  background: #147574;
  border-color: #147574;
}
.form-ujian-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-ujian-label-setuju {
  font-size: 0.875rem;
  font-weight: 600;
  color: #147574;
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
}
