@charset "UTF-8";

/* contact.css */
.contact-form-submit-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  border: none;
}

.l-form .error {
  scroll-margin-top: 15rem;
}

input[type="checkbox"]+span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

input[type="checkbox"]+span::before {
  content: "";
  display: inline-block;
  background: #eef6f7;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 4px;
  transition: all 0.4s ease;
}

input[type="checkbox"]+span::after {
  position: absolute;
  background-color: transparent;
  top: 9px;
  left: 7px;
  width: 10px;
  height: 4px;
  border-style: solid;
  border-color: #db000f;
  border-width: 0 0 2px 2px;
  border-image: none;
  transform: rotate(-45deg) scale(0);
}

input[type="checkbox"]:checked+span::after {
  content: "";
  transform: rotate(-45deg) scale(1);
  transition: transform 200ms ease-out;
}