.contaier-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  width: 100%;
  background-color: black;
  background-image: url("./assets/signInBackground.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.content-wrapper .heading {
  padding-bottom: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrapper .heading img {
  height: 25rem;
}
@media screen and (max-width: 400px) {
  .content-wrapper .heading img {
    height: 15rem;
  }
  .content-wrapper .heading {
    padding-bottom: 10rem;
  }
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  width: 100%;
}
.content-wrapper .content-card-one {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  margin-bottom: 2rem;
}
.content-wrapper .content-card-one .horizontal-line {
  margin: 2rem 0;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, #ffffff00, #ffffff5e, #ffffff00);
  border-image-slice: 1;
  width: 100%;
}

.content-wrapper .content-card-one .card-heading {
  display: flex;
  justify-content: space-between;
}

.content-wrapper .content-card-one .no-wallet {
  font-size: 1.6rem;
  text-align: center;
}
.main-heading {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.035em;
  color: #f7f0ff;
  margin-bottom: 1rem;
}

.modal-bg {
  display: none;
  background-color: #00000032;
  z-index: 999;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.modal {
  z-index: 1000;
  width: 100%;
  height: 75vh;
  position: fixed;
  bottom: 0px;
  display: none;
  background-color: #fff;
  border-radius: 3rem 3rem 0 0;
}
.modal .model-wrapper {
  padding: 2rem 2rem 0rem 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .model-wrapper .menu {
  margin: 1.2rem 0;
  height: 0.7rem;
  width: 3.6rem;
  background-color: #c2c2c2;
  border-radius: 0.5rem;
}
.modal .model-wrapper .text-content {
  width: 100%;
  overflow-y: scroll;
}

.modal .model-wrapper .text-content .title_one {
  max-width: 20rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #000000;
}

.modal .model-wrapper .text-content .title_two {
  max-width: 20rem;
  font-weight: 700;
  font-size: 1.8rem;
  color: #000000;
}
.modal .model-wrapper .text-content p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #667085;
  margin: 1rem 0;
}
