html,
body {
  width: 100%;
}

.link {
  color: #5d77ff !important;
  text-decoration: none;
}

.wrapper {
  width: 100%;
 display: flex;
  justify-content: center;
  background-color: #0d0d23;
}

.main {
  position: relative;
  display: flex;
  background: no-repeat center center url("../img/bg3.jpg");
  background-size: cover;
  min-height: 100vh;
  max-width: 1920px;
}

.left {
  flex: 1 50%;
  display: flex;
  justify-content: flex-end;
}

.right {
  background-color: #0d0d23;
  flex: 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*LEFT SIDE*/

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 200px;
}

.content-wrapper .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 86px;
  margin-left: -29px;
}

.content-wrapper .image-wrapper .image {
  object-fit: cover;
  width: auto;
  height: 100%;
}

.content-wrapper .image-wrapper .image.mobile {
  display: none;
  margin-bottom: 90px;
}

.content-wrapper .image-wrapper .image.desktop {
  height: 741px;
  display: block;
}

.content-wrapper .title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.content-wrapper .subtitle {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 36px;
  text-align: center;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 16px;
}

.content-wrapper .button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: #e83c84;
  border-radius: 16px;
  margin-bottom: 74px;
  margin-top: 38px;
  color: #fff;
}

.content-wrapper .button a {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  text-decoration: none;
}

/*RIGHT SIDE*/

.right .footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 34px;
  padding-left: 78px;
  max-width: 638px;
}

.right .footer .copyright {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-bottom: 10px;
  margin-right: 10px;
  order: 1;
}

.right .footer .links {
  display: flex;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  margin-bottom: 10px;
  order: 2;

  color: #5d77ff;
  white-space: nowrap;
}

/*ALERT BOX*/

.popup {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.popup.hidden {
  display: none;
}

.popup .center-box {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #17172e;
  padding: 48px 66px;
}

.popup .center-box .popup-title {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #ffffff;
  margin-top: 48px;
}

.popup .center-box .popup-subtitle {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #a4a4b7;
  margin-top: 32px;
}

.popup .center-box .popup-subtitle.error {
  color: red;
}

.popup .center-box .popup-subtitle.hidden {
   display: none;
}

.popup .center-box .popup-button {
  width: 236px;
  height: 65px;
  background: #6f58f8;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  cursor: pointer;
}

.popup .center-box .popup-button.disabled {
  cursor: default;
  opacity: 0.6;
}

/*RESPONSIVE*/

@media only screen and (max-width: 1700px) {
  .left {
    justify-content: center;
    align-items: center;
  }
  .left .content-wrapper {
    padding: 0 20px;
    justify-content: center;
    width: 80%;
  }
  .right {
    justify-content: center;
    align-items: center;
  }
  .right .footer {
    padding: 0 20px;
    width: 80%;
  }
}

@media only screen and (max-width: 1150px) {
  .wallet-wrapper {
    display: flex;
    flex-wrap: wrap;

  }
  .wallet-wrapper #wallets {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }


  .wallet-wrapper .input-wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 1000px) {
  .main {
    flex-wrap: wrap;
  }

  .left {
    flex: 1 100%;
  }

  .left .content-wrapper {
    max-width: none;
    width: 80%;
  }

  .left .content-wrapper .title {
    font-size: 24px;
  }
  .left .content-wrapper .subtitle {
    font-size: 16px;
  }

  .left .content-wrapper .image-wrapper .image.mobile {
    display: block;
  }

  .left .content-wrapper .image-wrapper .image.desktop {
    display: none;
  }



  .right {
    flex: 1 100%;
  }

  .right .footer {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    max-width: none;
    width: 80%;
  }

  .right .footer .links {
    margin-bottom: 25px;
    order: 1;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .right .footer .copyright {
    order: 2;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
  }
  .popup .center-box .popup-title {
    font-size: 24px;
  }

  .popup .center-box .popup-subtitle {
    font-size: 16px;
  }
}
