  body {
      margin: 0;
      padding: 0;
      background: #fff;
      font-family: Arial, sans-serif;
      color: #00b9ad;
      background: url("../../img/main-bg.svg") repeat;
  }

  .container {
      max-width: 600px;
      margin: 0 auto;
      padding: 1rem;
      text-align: center;
  }

  h1,
  p {
      margin: 0 0 15px;
      color: #00b9ad;
  }

  .form-box {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
      justify-content: center;
  }

  form {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .phoneFeild {
      width: 100%;
      border: 2px solid #00b9ad;
      border-radius: 6px;
      padding: 10px;
      color: #00b9ad;
      outline: none;
      background-color: white;
  }

  textarea {
      resize: none;
      min-height: 150px;
  }

  button {
      background: transparent;
      border: 2px solid #00b9ad;
      padding: 12px 30px;
      border-radius: 6px;
      color: #00b9ad;
      font-size: 16px;
      cursor: pointer;
      transition: 0.2s;
      width: auto;
      align-self: center;
      background-color: white;
  }

  button:hover {
      background: #00b9ad;
      color: #fff;
  }

  a.tg {
      display: inline-block;
      margin: 20px 0;
      font-weight: bold;
      text-decoration: none;
      color: #00b9ad;
  }

  a.tg:hover {
      text-decoration: underline;
  }

  .bg-img {
      position: fixed;
      bottom: 1px;
      right: -250px;
      width: 75%;
      height: 60%;
      object-fit: contain;
      z-index: 2;
      pointer-events: none;
  }

  .rule {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      /* чекбокс по верхнему краю текста */
      gap: 10px;
      cursor: pointer;
      width: 99%;
  }

  .rule_text {
      line-height: 1.4;
      font-size: 0.7rem;
  }

  .rule_text_btn {
      width: 77%;
      line-height: 1.4;
      font-size: 0.7rem;
  }


  .showLink,
  .showLink a {
      display: inline-block;
      font-size: 0.7rem;
      text-decoration: underline;
      font-weight: 555;
      cursor: pointer;
  }

  .hide {
      opacity: 0;
      pointer-events: none;
  }