
.wrapper {
    background: #84e6fd;
    background: linear-gradient(135deg, #dfe9f3, #ffffff);
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    padding: 5px;
}
/* .wrapper.form-success .container h1 {
    -webkit-transform: translateY(85px);
    -ms-transform: translateY(85px);
    transform: translateY(85px);
} */
.troll-card {
  /* max-width: 500px; */
  margin: 40px auto;
  padding: 25px;
  border-radius: 18px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;

  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  animation: fadeIn 1s ease, glow 2.5s infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  from { box-shadow: 0 0 8px rgba(0, 198, 255, 0.4); }
  to { box-shadow: 0 0 18px rgba(0, 198, 255, 0.8); }
}

.card{
    z-index: 9999;
}
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    bottom: -160px;
    -webkit-animation: square 25s infinite;
    animation: square 25s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
    left: 10%;
}
.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 17s;
    animation-duration: 17s;
}
.bg-bubbles li:nth-child(3) {
    left: 25%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    -webkit-animation-duration: 22s;
    animation-duration: 22s;
}
.bg-bubbles li:nth-child(5) {
    left: 70%;
}
.bg-bubbles li:nth-child(6) {
    left: 80%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
    left: 55%;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 10px;
    height: 10px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}
.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
}
@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-700%);
        transform: translateY(-700%);
    }
}
@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-700%);
        transform: translateY(-700%);
    }
}
.bg-bubbles li:nth-child(1) .heart {
    font-size: 50px;
}
.bg-bubbles li:nth-child(2) .heart {
    font-size: 100px;
}
.bg-bubbles li:nth-child(3) .heart {
    font-size: 70px;
}
.bg-bubbles li:nth-child(4) .heart {
    font-size: 170px;
}
.bg-bubbles li:nth-child(5) .heart {
    font-size: 120px;
}
.bg-bubbles li:nth-child(6) .heart {
    font-size: 150px;
}
.bg-bubbles li:nth-child(7) .heart {
    font-size: 60px;
}
.bg-bubbles li:nth-child(8) .heart {
    font-size: 110px;
}
.bg-bubbles li:nth-child(9) .heart {
    font-size: 80px;
}
.bg-bubbles li:nth-child(10) .heart {
    font-size: 200px;
}
.heart {
    font-size: 152px;
    text-align: center;
    color: rgba(253, 253, 253, 0.41);
    padding: 0;
    margin: 0;
}

.pulse2 {
    -webkit-animation: pulse2 1s linear infinite;
    -moz-animation: pulse2 1s linear infinite;
    -ms-animation: pulse2 1s linear infinite;
    animation: pulse2 1s linear infinite;
}

@keyframes pulse2{
    0% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

}

@-moz-keyframes pulse2 {
    0% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -moz-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

}

@-ms-keyframes pulse2 {
    0% {
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -ms-transform: scale(1);
        transform: scale(1);
    }

}



