@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
div {
  font-family: 'Inter', sans-serif;
}
p{
    margin-block-end: 0;
}
.bg-main {
  background-color: #151515;
  min-height: 100dvh;
  width: 100%;
  padding: 100px 0 60px 0;
  display: flex;
  flex-direction: column;
}
 .div-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95vh;
 }
.title-primary {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.wppFormContainer {
  width: 644px;
  border: 1px solid #555555;
  margin: 50px auto 10px auto;
  background-color: #3a3a3a;
  padding: 25px;
  border-radius: 20px;
}
.form-label {
  color: #fff;
}
.btn-primary {
  background-color: #1c4ed8;
  border: 1px solid #1c4ed8;
}
.btn-primary:hover {
  background-color: #173ca1;
  border: 1px solid #173ca1;
}
.btn-secondary {
  background-color: #b4caff;
  color: #151515;
}
.btn-secondary:hover {
  background-color: transparent;
  border: 1px solid #b4caff;
  color: #fff;
}
.title-resultado {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.divResult {
  display: none;
}
.divHistorico {
  display: none;
  width: 644px;
  margin: 2% auto;
  background-color: #3a3a3a;
  padding: 25px;
  border-radius: 20px;
}
.input-copy-wrapper {
  position: relative;
}

.input-copy-wrapper input {
  padding-right: 42px;
}

.btn-copy {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);

  border: none;
  background: transparent;
  padding: 4px;
  cursor: pointer;
  color: #6c757d;
}

.btn-copy:hover {
  color: #000;
}

.bg-black {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #000;
  z-index: 10;
}

@media (max-width: 767px) {
  .wppFormContainer,
  .divHistorico,
  .divResult {
    width: 100%;
  }
  .bg-main {
    padding: 50px 0px;
  }
  .title-primary {
    font-size: 35px;
  }
}
