﻿@keyframes AnimacionFondo {
    100% {
        background-position: 15% 30%;
    }
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(/Resources/FondoIcioSesion.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: AnimacionFondo 15s infinite alternate linear;
}

.ContenedorInicio {
    background-color: rgb(255,255,255,0.6);
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 500px rgb(0,0,0,0.5);
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 500px;
}

.TextoColorBlanco {
    color: #FFF;
}
