body {
  padding: 1rem;
}

body {
  background: url('../assets/fondoPresi.webp') no-repeat center center fixed;
  background-size: cover;
}

#cardLogin {
  min-width: 320px;
  max-width: 400px;
  width: 100%;
}

.logo-img {
  width: 100px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid black;
  object-fit: cover;
}



/*Estilos de boton*/

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  color: white;
}

/* Common Effects */

.btn-effect-2 {
  background: #9f2241;
}
.btn-effect-2:hover {
  animation: explode 0.5s forwards;
  box-shadow: 0 0 30px #9f2241;
}

/* Animations */
@keyframes explode {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
  }
}
