.page__index__footer {
  width: 100%;
  padding-top: 50px;
  position: relative;
  padding-bottom: 55px;

  @media #{$screen-sm-min} {
    padding-top: 87px;
  }

  @media #{$screen-md-min} {
    padding-top: 174px;
  }

  .register-form {
    position: relative;
    display: flex;
    flex-direction: column;

    padding: 0 10px;
    display: flex;
    flex-direction: column;

    @media #{$screen-sm-min} {
      padding: 0 85px;
    }

    @media #{$screen-md-min} {
      padding: 0 170px;
    }

    .large-text {
      text-transform: uppercase;
      text-align: center;

      h1 {
        color: $brand-yellow;
        font-weight: 800;
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 31px;

        @media #{$screen-md-min} {
          font-size: 150px;
          line-height: 150px;
          margin-bottom: 91px;
        }
      }
    }

    .input-field {
      width: 100%;

      .input-name,
      .input-email-city,
      .input-phone-howhear {
        gap: 8px;
        display: flex;
        justify-content: center;
        flex-direction: column;

        @media #{$screen-sm-min} {
          flex-direction: row;
        }
      }

      .input-email-city,
      .input-phone-howhear {
        margin-top: 10px;
      }

      input {
        width: 100%;
        height: 54px;
        border: 1px solid #fff;
        border-radius: 10px;
        background-color: transparent;
        padding: 0 14px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #fff;

        @media #{$screen-sm-min} {
          border: 2px solid #fff;
          font-size: 16px;
          line-height: 24px;
        }

        &:-webkit-autofill,
        &:-webkit-autofill:hover,
        &:-webkit-autofill:focus,
        &:-webkit-autofill:active {
          -webkit-box-shadow: 0 0 0 30px white inset;
          outline: none;
        }

        &::-webkit-input-placeholder {
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
          color: #fff;

          @media #{$screen-sm-min} {
            font-size: 16px;
            line-height: 24px;
          }
        }

        &::-webkit-input-placeholder,
        &::-moz-placeholder,
        &:-ms-input-placeholder,
        &::-ms-input-placeholder,
        &::placeholder {
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
          color: #fff;

          @media #{$screen-sm-min} {
            font-size: 16px;
            line-height: 24px;
          }
        }

        &:focus-visible {
          outline: none;
          border: 2px solid #feff00;
        }
      }

      select {
        width: 100%;
        height: 54px;
        padding: 15px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;

        border: 1px solid #fff;
        border-radius: 10px;

        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        color: #fff;
        background-image: url('/img/icons/icon-arrow-01-down-8x8.svg');
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 14px 9px;
        background-color: transparent;

        @media #{$screen-sm-min} {
          border: 2px solid #fff;
        }

        &:focus-visible {
          outline: none;
          border: 2px solid #feff00;
        }
      }
    }

    .checkboxes {
      margin-top: 30px;
      margin-left: 10px;
      gap: 10px;

      @media #{$screen-sm-min} {
        margin-top: 50px;
      }

      .checkboxes-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        color: #feff00;

        @media #{$screen-md-min} {
          font-size: 24px;
          line-height: 32px;
        }
      }

      .checkbox {
        margin-top: 10px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;

        @media #{$screen-sm-min} {
          margin-top: 17px;
          flex-direction: row;
        }

        .checkbox-dummy {
          width: 15px;
          height: 15px;
          border: 2px solid #fff;
          border-radius: 3px;
          background-color: transparent;
          cursor: pointer;
          position: relative;
          display: inline-block;
          margin-right: 10px;
        }

        input {
          margin: 0;
          width: 0;
          opacity: 0;

          &:checked + .checkbox-dummy::before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 75%;
            width: 40%;
            height: 2px;
            transform: translate(-6px, 5px) rotateZ(-135deg);
            transform-origin: 2px 2px;
            background: #fff;
          }

          &:checked + .checkbox-dummy::after {
            content: '';
            display: block;
            position: absolute;
            top: 10%;
            left: 85%;
            width: 75%;
            height: 2px;
            transform: translate(-6px, 5px) rotateZ(-45deg);
            transform-origin: 2px 2px;
            background: #fff;
          }
        }

        label {
          cursor: pointer;
          flex: 1 1 50%;

          @media #{$screen-sm-min} {
            flex: none;
          }

          &:not(:last-of-type) {
            margin-right: 0;

            @media #{$screen-sm-min} {
              margin-right: 40px;
            }
          }
        }
      }
    }

    .btn__submit {
      margin: 36px auto 0;
      text-align: center;
      font-weight: 700;
      width: 250px;
      height: 50px;
      font-size: 16px;
      line-height: 24px;

      @media #{$screen-md-min} {
        margin: 65px auto 0;
        height: 60px;
        font-size: 21px;
        line-height: 32px;
      }
    }

    .disclaimer {
      margin-top: 20px;
      font-weight: 400;
      font-size: 11px;
      line-height: 16px;

      text-align: center;
      letter-spacing: 0.05em;

      color: #fff;

      span {
        text-decoration: underline;
        cursor: pointer;
      }
    }

    .questions {
      display: flex;
      margin: 25px auto 0;
      text-align: center;
      flex-direction: column;

      color: #fff;
      font-size: 14px;
      line-height: 22px;
      align-items: center;

      @media #{$screen-md-min} {
        flex-direction: row;
      }

      a {
        text-decoration: underline;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
      }
    }
  }

  .disclaimer-back {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(#000, 0.6);
    z-index: 20;
    transition: all 0.3s;
  }

  .disclaimer-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 750px;
    min-height: 649px;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 123px;
    overflow: auto;
    z-index: 21;
    justify-content: space-between;
    @media #{$screen-md-min} {
      width: 55%;
      height: auto;
      border-radius: 10px;
    }

    .disclaimer-box-close {
      width: 36px;
      min-height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      position: relative;

      span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 0;
        border: 1px solid #ffffff;
      }

      span:first-of-type {
        transform: translate(-50%, -50%) rotate(-45deg);
      }

      span:last-of-type {
        transform: translate(-50%, -50%) rotate(45deg);
      }
    }

    .diclaimer-content {
      margin-top: 64px;
      max-width: 620px;
      line-height: 26px;

      h2 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        color: #fff;
        margin-bottom: 20px;
      }

      strong {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
      }

      p .privacy-policy-title {
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
      }
    }

    .btn__agree {
      width: 250px;
      min-height: 60px;
      margin-top: 33px;
      font-weight: 700;
      font-size: 18px;
      line-height: 18px;
    }

    .btn__disagree {
      margin-top: 20px;
      text-decoration: underline;
      cursor: pointer;
      font-size: 11px;
      line-height: 16px;
    }
  }

  .retail-opportunities,
  .contact-westbank-living {
    margin-top: 64px;

    @media #{$screen-sm-min} {
      margin-top: 100px;
    }

    .middle-text {
      text-align: center;
      text-transform: uppercase;

      h2 {
        color: $brand-yellow;
        margin-bottom: 1rem;

        @media #{$screen-md-min} {
          margin: 0 0 2.5rem 0;
        }
      }
    }

    .contact-lists,
    .retail-lists {
      position: relative;
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
      gap: 6.5px;
      white-space: pre-wrap;

      .contact-list,
      .retail-list {
        position: relative;
        padding-top: 65px;
        height: 180px;
        max-width: 180px;
        flex: 0 0 calc(50% - 1rem);

        @media #{$screen-md-min} {
          padding-top: 110px;
          height: 300px;
          max-width: 300px;
          flex: 1 1 calc(25% - 1rem);
        }

        svg {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;

          @media #{$screen-sm-min} {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
          }
        }

        .retail-title {
          position: relative;
          font-weight: 700;
          font-size: 12px;
          line-height: 18px;
          text-align: center;

          @media #{$screen-md-min} {
            font-size: 18px;
            line-height: 26px;
          }
        }

        .retail-details {
          position: relative;
          font-size: 10px;
          line-height: 16px;
          text-align: center;

          @media #{$screen-md-min} {
            font-size: 16px;
            line-height: 24px;
          }

          &:first-of-type {
            margin-top: 2px;
          }

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

        .contact-details {
          position: relative;
          font-size: 10px;
          line-height: 16px;
          text-align: center;

          @media #{$screen-md-min} {
            font-size: 16px;
            line-height: 24px;
          }

          &:first-of-type {
            width: 100%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
          }

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

  .information {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 47px 2rem 0;

    @media #{$screen-md-min} {
      padding: 92px 2rem 0;
    }

    .left {
      display: flex;
      align-items: center;

      margin-right: auto;
      flex: 0 0 100%;
      justify-content: center;

      @media #{$screen-sm-min} {
        flex: 1 1;
      }

      @media #{$screen-md-min} {
        justify-content: normal;
      }

      a {
        margin-right: 5vw;
        width: 100px;
        height: auto;
        display: flex;
        align-items: center;

        &:last-child {
          margin-right: 0;
        }

        @media #{$screen-sm-min} {
          &:first-child {
            width: 150px;
          }

          &:last-child {
            width: 115px;
          }
        }

        svg {
          width: 100%;
          height: auto;
          fill: #fff;
        }
      }
    }

    .right {
      margin-left: auto;
      flex: 0 0 100%;
      display: flex;
      align-items: center;
      order: 1;
      justify-content: center;

      @media #{$screen-sm-min} {
        flex: 1 1;
      }

      @media #{$screen-md-min} {
        order: inherit;
        justify-content: flex-end;
      }

      a {
        margin-left: 1rem;

        &:first-child {
          margin-left: 0;
        }

        .icon-box {
          position: relative;
          width: 42px;
          height: 42px;
          background-color: #fff;
          border-radius: 50%;

          svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
          }
        }
      }
    }

    .bottom {
      display: flex;
      flex: 0 0 100%;
      margin: 1.5rem 0 2.25rem;
      color: #fff;
      justify-content: center;

      @media #{$screen-md-min} {
        justify-content: normal;
        margin: 2rem 0 0;
      }

      .disclaimer,
      .privacy-policy {
        margin-top: 20px;
        font-weight: 400;
        font-size: 11px;
        line-height: 16px;

        letter-spacing: 0.05em;

        color: #fff;

        span {
          text-decoration: underline;
          cursor: pointer;
        }
      }

      .privacy-policy {
        margin-left: 40px;
      }

      p {
        margin: 0;
        max-width: 800px;

        small {
          display: block;
          font-weight: 400;
          font-size: 0.7rem;
          line-height: 22px;
          letter-spacing: 0.04em;

          @media #{$screen-sm-min} {
            font-size: 14px;
          }
        }
      }
    }
  }
}
