/* JSPS Kayit Sartlar Onay - native checkbox stilize + uyari kutusu */
#tutor-terms-conditions.jsps-rt-input{
  appearance:none;
  -webkit-appearance:none;
  width:20px; height:20px;
  border:2px solid #0071dc;
  border-radius:5px;
  background:#fff;
  cursor:pointer;
  margin:0;
  position:relative;
  transition:background .12s ease, border-color .12s ease;
}
#tutor-terms-conditions.jsps-rt-input:hover{ border-color:#0056b3; }
#tutor-terms-conditions.jsps-rt-input:checked{ background:#0071dc; border-color:#0071dc; }
#tutor-terms-conditions.jsps-rt-input:checked::after{
  content:"";
  position:absolute;
  left:5px; top:1px;
  width:5px; height:10px;
  border:solid #fff;
  border-width:0 2.5px 2.5px 0;
  transform:rotate(45deg);
}
#tutor-terms-conditions.jsps-rt-input:focus{ outline:3px solid rgba(0,113,220,.25); outline-offset:1px; }

/* Checkbox + label satirini sarma */
.jsps-rt-row{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  padding:14px !important;
  background:#f7faff !important;
  border:1px solid #c7d6ee !important;
  border-radius:10px !important;
  margin:14px 0 18px !important;
  font-size:14px !important;
  line-height:1.5 !important;
  color:#1f2a3b !important;
}
.jsps-rt-row.is-error{ border-color:#dc2626 !important; background:#fef2f2 !important; }
.jsps-rt-row label{
  cursor:pointer;
  user-select:none;
  font-size:14px !important;
  line-height:1.5 !important;
  color:#1f2a3b !important;
}
.jsps-rt-row label a{
  color:#0071dc;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:2px;
}

.jsps-rt-error{
  display:none;
  color:#b91c1c;
  font-size:13px;
  font-weight:600;
  margin:0 0 14px;
  padding:10px 12px;
  background:#fef2f2;
  border:1px solid #fecaca;
  border-radius:8px;
}
.jsps-rt-error.is-visible{ display:block; }