﻿@keyframes AnimacionFondo{
    100%{
        background-position: 15% 20%;
    }
}

body {
    background-image: url(../../Resources/FondoInicioSesion.svg); /*Colocar imagen en body*/
    background-repeat: no-repeat; /*Hace que no se repita la imagen de fondo*/
    align-items: center;
    justify-content:center;
    background-size: cover; /*Cubre toda la pantalla*/
    animation: AnimacionFondoLogin 5s infinite alternate linear;
}

.Iniciosesion{
    position: unset;
    margin-top:13%;
    background-color: rgb(255,255,255,0.2);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0, 0.9);
    backdrop-filter: blur(4px);
    color: #FFF;
}
.footer {
    position: fixed; /* Lo fija al fondo */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}
