
/* botoes */
/* Estilo para os botões */
.wrapbuttonAdm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.buttonAdm {
  width: 200px; /* Largura desejada para os botões */
  height: 50px; /* Altura desejada para os botões */
  margin: 5px; /* Espaçamento entre os botões */
  font-family: 'Nunito', sans-serif;
  font-size: 14px; /* Tamanho da fonte */
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #313133;
  background: #4FD1C5;
  background: linear-gradient(90deg, rgba(129, 230, 217, 1) 0%, rgba(79, 209, 197, 1) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 6px 6px 12px rgba(79, 209, 197, 0.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 0px;
}

.buttonAdm::before {
  content: '';
  border-radius: 50px;
  min-width: calc(100px + 12px);
  min-height: calc(40px + 12px);
  border: 2px solid #00FFCB;
  box-shadow: 0 0 30px rgba(0, 255, 203, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.buttonAdm:hover, .buttonAdm:focus {
  color: #313133;
  transform: translateY(-3px);
}

.buttonAdm:hover::before, .buttonAdm:focus::before {
  opacity: 1;
}

.buttonAdm::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 4px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.buttonAdm:hover::after, .buttonAdm:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}


