/* container card */
.container-card {
  color: rgb(255, 255, 255);
  background: url("../../assetsBlockchain/card/card-fold-bg.png") right bottom /
      cover no-repeat,
    rgb(18, 29, 51);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-bottom: 1px solid rgb(240, 242, 247);
  padding-top: 5rem;
}

.card {
  padding: 4.375rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;

  box-sizing: content-box;
  max-width: 62.5rem;
  margin: 0px auto;
}
.card img {
  max-width: 50%;
}

.card-content {
  max-width: 36.375rem;
}

.card-content h1 {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  line-height: 3.625rem;
}
.card-content p {
  color: rgb(223, 227, 235);
  font-size: 1.5rem;
  line-height: 2.125rem;
  margin-bottom: 2rem;
}

/* card form */
.card-content > form {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-content > form > input {
  background-color: rgba(255, 255, 255, 0.1);
  height: 2.75rem;
  min-width: 20.5rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  color: rgb(255, 255, 255);

  font-size: 16px;
  line-height: 1.15;
  margin: 0px;
}

.card-content > form > button {
  height: 2.75rem;
  width: 10rem;
  padding: 0.5rem;
  font-weight: 600;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.375rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 144%;
  border-radius: 0.5rem;
  border: 0.125rem solid transparent;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  background-color: rgb(12, 108, 242);
  color: rgb(255, 255, 255);
}

.card-content > span {
  display: block;
  margin-top: 2rem;
  color: rgb(204, 210, 222);

  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
}

/* responsive mobile */

@media (max-width: 426px) {
  .container-card {
    background: url("../../assetsBlockchain/card/card-fold-bg-mobile.png") right
        bottom no-repeat,
      rgb(18, 29, 51);
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .card {
    flex-direction: column;
    padding: 2.5rem 1rem;
    gap: 0.875rem;
  }
  .card-content h1 {
    max-width: 20rem;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .card-content p {
    font-size: 1.0625rem;
    line-height: 1.5rem;
    padding-right:8px ;
  }
  .card img {
    max-width: 60%;
  }
  .card-content > form > input{
    width: 100%;
  }
}
