body {
  background-color: #E8ECEF;
}

.centered {
  padding-top: 200px;
  text-align: center;
}

.secret-text {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000;
}

.user-button {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  height: 40px;
  width: 251px;
  border: none;
  background: #2a2297;
  border-radius: 20px;
  cursor: pointer;
}

.label {
  line-height: 22px;
  font-size: 17px;
  color: #fff;
  font-family: sans-serif;
  letter-spacing: 1px;
}

.user-button:hover {
  background: #2a22978a;
}

.user-button:hover .svg-icon {
  animation: slope 1s linear infinite;
}

@keyframes slope {
  0% {
  }

  50% {
    transform: rotate(10deg);
  }

  100% {
  }
}

.additional-button {
  margin-top: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  height: 40px;
  width: 251px;
  border: none;
  background: green;
  border-radius: 20px;
  cursor: pointer;
}
.additional-button-1 {
  margin-top: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  height: 40px;
  width: 251px;
  border: none;
  background:red;
  border-radius: 20px;
  cursor: pointer;
}
.users-align {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px; /* Adjust margin as needed */
}
.secret{
  margin-top: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 9px 12px;
  gap: 8px;
  height: 40px;
  width: 251px;
  border: none;
  background:red;
  border-radius: 20px;
}