body{
margin:0;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

.container{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
}

.bg-login{
background-image:url("../img/dante.png");
background-size:contain;     /* muestra la imagen completa */
background-position:center;  /* centra la imagen */
background-repeat:no-repeat;
background-color:#0f2027;    /* relleno para los lados */
min-height:100vh;
width:100%;
}
/* FONDO REGISTRO */

.bg-index{

background: 
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
url("https://camaleones.ec/Expo_Software/img/fondo.png");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

min-height:100vh;
width:100%;

display:flex;
align-items:center;

}
.card{
border-radius:15px;
}

/* FONDO JURADO */
.bg-jurado{
background-image:url("https://camaleones.ec/Expo_Software/img/fondo.png");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
min-height:100vh;
}

.card{
border-radius:15px;
backdrop-filter:blur(5px);
}

/* FONDO VOTAR */
.bg-votar{
background-image: url("../img/fondo.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}