.input-wrap {
  position: relative;
  width: 100%; }

.input {
  border: none;
  border-bottom: 2px solid var(--color);
  height: 50px;
  padding: 10% 18px 5%;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  width: 100%;
  position: relative;
  background: var(--color-bg-gray);
  color: var(--color);
  border-radius: 0;
  box-shadow: 0 1px 1px #ddd inset;
  border-radius: 5px; }
  .input::placeholder {
    color: inherit;
    font-family: inherit; }

.placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: var(--color-gray);
  position: absolute;
  left: 18px;
  top: 34%;
  display: block;
  pointer-events: none;
  user-select: none;
  transition: var(--transition-delay);
  transform-origin: left;
  text-align: left;
  white-space: nowrap;
  background: var(--color-bg); }
  .placeholder_up {
    transform: translate(0, -60%) scale(0.7); }

.checkbox-label {
  font-size: 10px;
  line-height: 1.5;
  display: block;
  padding-left: 31px;
  color: var(--color-text-gray);
  position: relative;
  cursor: pointer; }
  .checkbox-label input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    cursor: pointer; }
  .checkbox-label a {
    color: var(--color-text); }
    .checkbox-label a:hover {
      color: var(--color-accent); }
  .checkbox-label:before, .checkbox-label:after {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    top: 9px;
    translate: -50% -50%;
    transition: var(--delay);
    aspect-ratio: 1;
    pointer-events: none; }
  .checkbox-label:before {
    width: 20px;
    border-radius: 5px;
    border: 1px solid var(--color-text-gray); }
  .checkbox-label:after {
    width: 10px;
    border-radius: 3px;
    background: var(--color-accent);
    opacity: 0; }
  .checkbox-label:has(input:checked):after {
    opacity: 1; }

/*# sourceMappingURL=form.css.map */
