/* Tema (main*.css) TÜM `input[type=checkbox|radio] + label`'a :before ile SAHTE bir
   kutu/daire çiziyor ve native input'u yalnizca `.checkbox`/`.radio` sarmalayicisi
   icinde gizliyor. Bootstrap'in `.form-check` yapisinda o sarmalayici yok, native
   input gorunur kaliyor => ekranda CIFT kutu cikiyor (2FA "bu cihazda bir daha
   sorma", checkout onay kutulari, odeme yontemi radio'lari...).

   Cozum: `.form-check` iskeletinde tema pseudo-element'ini kapat ve Bootstrap'in
   ezilen boslugunu geri ver. main.css'ten SONRA yuklenmeli. */

.form-check .form-check-input + .form-check-label::before {
	content: none;
	display: none;
	border: 0;
	margin: 0;
	width: auto;
	height: auto;
}

/* Tema `input[type=checkbox] + label { padding-left: 0 }` ile Bootstrap'in
   etiket bosluguna mudahale ediyor; .form-check icinde geri al. */
.form-check .form-check-input + .form-check-label {
	padding-left: 0;
}

/* Tema `input[type=checkbox]{margin-top:8px}` Bootstrap'in hizalamasini bozuyor. */
.form-check .form-check-input {
	margin-top: .25em;
}
