﻿

@keyframes AnimacionFondo {
    100% {

        background-position: 15% 20%;

    }

}





body {
    background-image: url(/resources/iniciosesion.svg);
    background-repeat: no-repeat;
    align-items: center;
    background-size: cover;
    margin: 0;
    justify-content: center;
    animation: AnimacionFondo 4s infinite alternate linear;
}







.InicioSesionCotainer {


    position: unset;
    margin-top: 13%;
    background-color: rgb(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(3px);
    color: white;
}



#TituloInicioSesion {
    color: #FFF;
}

