/* Estilos personalizados podem ser adicionados aqui */
body {
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
}

/* Animações para transições suaves */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}


#campaigns-list{
    text-align: center;
}

#titlelog {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(282.13deg 73.14% 27.49% / 98%)
}

.border-blue-500{
    border-color: hsl(282.13deg 73.14% 27.49% / 98%) !important;
}

.text-blue-600 {

    color: hsl(282.13deg 73.14% 27.49% / 98%) !important;
}

.bg-blue-600{
    background-color: hsl(282.13deg 73.14% 27.49% / 98%) !important;
}

body {
/*  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e) !important;*/
  color: #0ff !important; /* texto ciano */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif; /* fonte futurista opcional */
  flex-direction: column;
  background-image: url('/gb.jpg') !important; /* imagem de fundo neon */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* mantém o fundo fixo ao rolar */  
  background-repeat: no-repeat !important;
}


input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #0ff; /* neon azul */
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  transition: 0.3s ease;
}

input:focus {
  outline: none;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff; /* glow neon */
  border-color: #f0f; /* opcional: troca cor ao focar */
}

button {
  background: #f0f; /* rosa neon */
  color: #000;
  font-weight: bold;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  box-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
  transform: scale(1.05); /* dá um leve efeito de destaque */
}


.form-box {
  background: linear-gradient(145deg, rgba(48,43,99,0.9), rgba(36,36,62,0.9));
  border: 2px solid #f0f;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 0 15px #f0f, 0 0 30px #0ff;
}


#titlelog{
    color:#f0f !important;
    font-size: 40px !important;
    text-shadow: 0 0 5px #ff00ff,
             0 0 10px #ff00ff,
             0 0 20px #ff00ff,
             0 0 40px #ff00ff;
}

a{
    color: #ff00ff !important;
}