* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0/1);
}

#box-form {
    width: 90%;
    max-width: 500px;
    padding: 25px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form button {
    width: 100%;
}

input.form-control {
    background-color: rgb(31 41 55/1);
    border-color: #374151;
    color: #989faa;
}

input.form-control::placeholder {
    color: #989faa;
}

.bg-box {
    background-color: rgb(17 24 39/1);
}

.bg-btn {
    background-color: #1db954;
    color: white;
    transition: 0.5s;
}

.bg-btn:hover {
    background-color: rgb(3, 91, 35);
    color: white;
}

.bg-btn2 {
    background-color: transparent;
    color: #1db954;
    transition: 0.5s;
}

.bg-btn2:hover {
    color: #ffffff;
}

.containerData {
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.282);
    border-radius: 15px;
    padding: 20px;
}

.containerData button {
    width: 100%;
}

#staticBackdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header {
    border-bottom: 1px solid #3a4960;
}

.bg-box {
    border: 1px solid #3a4960;
    background-color: rgb(17 24 39/1);
}

#balance {
    background-color: #1db954;
}

.pulse {
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

.bg-green-spot {
  background-color: #1db954;
  color: white;
  position: relative;
  overflow: visible;
  font-weight: bold;
  transition: 0.5s;
}

.bg-green-spot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(34, 197, 94, 0.4); /* verde com transparência */
  border-radius: 15px;
  transform: translate(-50%, -50%) scale(1);
  animation: auraPulse 2s ease-out infinite;
  z-index: -1;
  pointer-events: none;
}

.bg-green-spot:hover {
  background-color: #046225;
}

@keyframes auraPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.text-green-spot {
  color: #1db954;
}

.giregire {
  animation: girarInfinito 12s linear infinite;
  display: inline-block;
}

@keyframes girarInfinito {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.barra-progresso {
  width: 90%;
  max-width: 500px;
  font-weight: bold;
}

.barra-progresso-complet {
  background-color: #1db954;
}
