.checkbox {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.checkbox-box {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 10, 23, 0.25);
  border-radius: 4px;
  position: relative;
  transition: border 0.3s ease;
}

.checkbox-label:hover .checkbox-box,
.checkbox-label:focus .checkbox-box {
  border: 1px solid rgba(11, 65, 205, 1);
}

.checkbox-icon {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checkbox-input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.checkbox-input:checked + .checkbox-label .checkbox-icon {
  opacity: 1;
}

.checkbox-input:checked + .checkbox-label .checkbox-box {
  border: 1px solid rgba(11, 65, 205, 1);
}

.checkbox-input:focus-visible + .checkbox-label .checkbox-box {
  outline: 2px solid rgba(11, 65, 205, 1);
  outline-offset: 2px;
}

.checkbox-text {
  font-size: 18px;
  line-height: 22px;
}

