.p-form__policy input[type=checkbox] {
  display: block;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #ca2423;
  border-radius: 2px;
  cursor: pointer;
}

.p-form__policy input[type=checkbox]:checked {
  background-color: #ca2423;
}

.p-form__policy input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.p-form__policy label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.p-contact-btn {
  min-width: 200px;
}
.p-contact-btn:disabled {
  background: #909090;
}

.p-contact-btn:disabled:hover {
  opacity: 1;
}