﻿@keyframes AnimacionFondo {

    100% {
        background-position: 15% 20%;
    }
}



body {
    background-image: url(/Resources/FondoLogIn.svg);
    background-repeat: no-repeat;
    align-items: center;
    text-align: center;
    margin: 0%;
    color:white;
    justify-content: center;
    animation: AnimacionFondo 10s infinite alternate linear;
}
.Container {
    padding: 2%;
    margin-left: 20%;
    margin-top: 5%;
    box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.5);
    width: 50%;
    color: white;
    height: 50%;
}
.SecondaryContainer {
    padding: 2%;
    margin-top: 60px;
    background-color:darkslateblue;
    box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
}