body {
    background: #f3f3f3;
    animation-name: moveBackground;
    animation-duration: 50s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.footer {
    background-color: #0b5052; /* Color de fondo del footer */
    color: #ffffff; /* Color del texto del footer */
  }
  
  .footer .container {
    max-width: 100%;
  }
  

  .navbar {
    background-color: #0b5052; /* Color de fondo del Navbar */
  }
  #tabla-container {
    margin-bottom: 20px; /* Espacio entre el contenedor de la tabla y el footer */
}

body {
  background: #f3f3f3;
  animation-name: moveBackground;
  animation-duration: 50s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  min-width: 100%;
  min-height: 100vh;
}
.auth-content {
  position: relative;
  width: 480px;
  padding: 15px;
  z-index: 5;
}
.auth-content .card {
  margin-bottom: 0;
  -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
  border: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.auth-content .card .card-block,
.auth-content .card .card-body {
  padding: 30px 25px;
}

.auth-content .form-control {
  background: #f4f7fa;
  min-height: 42px;
  line-height: 42px;
  font-size: 14px;
  padding: 10px 15px;
  height: 42px;
}
.shadow-2 {
  -webkit-box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
  box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
}

p.text-muted {
  font-size: 13px;
}

.wrapper a,
.wrapper p>a {
  color: #3e8ef7;
  font-weight: 600;
}
.btn-discord {
  background-color: #7289DA;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px; 
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-discord:hover {
  background-color: #677BC4;
}
.btn-discord:focus {
  outline: none;
}

.alert-fixed {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

/* Estilos para la pila de alertas */
.alert-stack {
  position: relative;
  margin-top: 10px;
}

