.container--settings {
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

/* text */

.settings-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  gap: 10px;
}

.settings-subheader {
  opacity: 50%;
}

/* logo */

.settings-logo {
  width: 120px;
  height: 120px;
  filter: brightness(0) invert(1);
}

.settings-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.settings-static-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 160px;
  height: 160px;
}

.settings-wave {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 160px;
  opacity: 0;
  height: 160px;
  animation: settings-ripple 8s linear infinite;
}

.settings-wave:nth-child(1) { animation-delay: 0s; }
.settings-wave:nth-child(2) { animation-delay: 2s; }
.settings-wave:nth-child(3) { animation-delay: 4s; }
.settings-wave:nth-child(4) { animation-delay: 6s; }

@keyframes settings-ripple {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(8); opacity: 0; }
}
/* buttons */

.settings-buttons {
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 10px;
}

.settings-button-first {
  width: 100%;
  height: 4rem;
  border-radius: 50px;
  z-index: 10;
  color: white;
  border: none;
  background-color: #b637bc;
  cursor: pointer;
  position: relative;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
  animation: neon-glow 2s ease-in-out infinite;
}

@keyframes neon-glow {
  0%, 100% {
    box-shadow:
      0 0 2px #b637bc,
      0 0 6px #b637bc,
      0 0 15px #b637bc;
  }
  50% {
    box-shadow:
      0 0 2px #b637bc,
      0 0 5px #b637bc;
  }
}
.settings-button-first:hover {
  background-color: #a934af;
}

.settings-button-first:active {
  transform: scale(0.99);
}


.settings-button-second {
  width: 100%;
  z-index: 10;
  color: white;
  height: 4rem;
  border-radius: 50px;
  border: none;
  background-color: rgba(255, 255, 255, 0.114);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.settings-button-second:hover {
  background-color: rgba(255, 255, 255, 0.047);
}

.settings-button-second:active {
  transform: scale(0.99);
}
