﻿@keyframes AnimacionFondoPantalla {

    100% {
        background-position: 15% 30%;
    }
}


    body {
        background-image: url('/resources/fondo iniciosesion.svg');
        background-repeat: no-repeat;
        animation: AnimacionFondoPantalla 10s infinite alternate linear;
    }

    .containerIniciosesion {
        position: unset;
        margin-top: 13%;
        background-color: rgb(255, 255, 255, 0.5);
        padding: 20px;
        border-radius: 50px;
        box-shadow: 0 0 20px rgba(0,0,0 0.6);
    }
