.checkbox-group-form-unique {
  margin: 15px 0;
  display: flex;
  align-items: flex-start;
}
.checkbox-group-form-unique input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 10px; /* попробуй 0, 2px, 4px — подбери под свой шрифт */
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #007bff; /* для современных браузеров — цвет чекбокса */
}

.consent-label-form-unique {
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}

.consent-link-form {
  color: #007bff;
  text-decoration: underline;
  margin-left: 3px;
  transition: color 0.2s;
}

.consent-link-form:hover {
  color: #0056b3;
}


/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #222;
  color: #fff;
  padding: 20px 16px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  font-size: 16px;
  gap: 16px;
}
.cookie-banner__close {
  position: absolute;
  top: 8px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cookie-banner__close:hover {
  opacity: 1;
}
.cookie-banner__text {
  flex: 1 1 300px;
  min-width: 200px;
  max-width: 700px;
}

.cookie-banner__link {
  color: #4da3ff;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__btn {
  background: #4da3ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 12px;
}

.cookie-banner__btn:hover {
  background: #007bff;
}