body::before {
  content: 'mobile';
  display: none;
}

@media (min-width: 720px) and (max-width: 1023px) {
  body::before {
    content: 'tablet';
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  body::before {
    content: 'desktop';
  }
}

@media (min-width: 1280px) {
  body::before {
    content: 'desktop-wide';
  }
}

:root {
  --t-text-list: #005ab4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --t-text-list: #ff6669;
  }
}

:root {
  --t-a-underline: #005ab4;
  --t-a-underline-hover: #8d0614;
  --t-a-underline-active: #6a0b0c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --t-a-underline: #ff6669;
    --t-a-underline-hover: #ff9193;
    --t-a-underline-active: #ffbbbc;
  }
}

:root {
  --t-button-label: #22211d;
  --t-button-label-bg: #ebebe5;
  --t-button-label-hover: #dadad2;
}

@media (prefers-color-scheme: dark) {
  :root {
    --t-button-label: #f5f5f2;
    --t-button-label-bg: #4e4d47;
    --t-button-label-hover: #5e5d56;
  }
}

:root {
  --t-caret-icon-red-mask: #005ab4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --t-caret-icon-red-mask: #ff6669;
  }
}

:root {
  --mainColor: #121534;
  --text: #fff;
  --input-color: #000;
  --valid-input-color: #000;
}

@media print {
  body {
    display: none !important;
  }
}

@media print {
  body {
    display: none !important;
  }
}

#main-form {
  border: 2px solid var(--mainColor);
  border-radius: 16px;
  max-width: 560px;
  margin: 0px auto;
  font-family: Arial;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
}

.form-title {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: var(--mainColor);
  color: var(--text);
  text-transform: uppercase;
  margin: 30px 0px;
  line-height: 1.2;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .form-title {
    font-size: 24px;
  }
}

.header__menu {
  margin-right: 2rem;
  color: white;
  width: 45px;
  height: 45px;
}

@media (width < 1024px) {
  .header__menu {
    width: 24px;
    height: 24px;

    svg {
      width: 24px;
      height: 24px;
    }
  }
}
