/* Wrapper für unsere benutzerdefinierte Checkbox */

.custom-checkbox-icon {
  position: relative;
}

/* 1. Die originale Checkbox unsichtbar machen, aber funktional lassen */

.custom-checkbox-icon .form-check-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}

/* 2. Das Label-Pseudoelement für den "nicht aktivierten" Zustand stylen */

.custom-checkbox-icon .form-check-label::before {
  content: '';
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  vertical-align: middle;
  background-image: url('../../assets/img/swordbutton.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 3. Das Aussehen ändern, wenn die Checkbox aktiviert ist (:checked) */

.custom-checkbox-icon .form-check-input:checked + .form-check-label::before {
  background-image: url('../../assets/img/swordbutton-active.svg');
}

/* Optional: Einen Hover-Effekt hinzufügen */

.custom-checkbox-icon .form-check-input:hover + .form-check-label::before {
  opacity: 0.8;
}

.btn {
  text-align: center;
}

.btn {
}

@media (min-width: 300px) {
  img {
    width: 248px;
    height: 100px;
  }
}

.btn {
}

@media (min-width: 300px) {
  .btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 576px) {
  img {
    width: 143px;
  }
}

.schloss {
  width: 1200px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

