﻿@keyframes AnimacionFondo {

    100% {
        background-position: 15% 20%;
    }
}

body {
    background-image: url(/Resources/FondoPantallaInicioSesion2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    margin: 0;
    justify-content: center;
    animation: AnimacionFondo 6s infinite alternate linear;
}

.InicioSesionContainer {
    color: #FFF;
    position: unset;
    margin-top: 13%;
    background-color: rgba(255, 255, 255, 0.35);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
    font-weight: bold;
    transition: all 0.5s ease;
}

#TituloInicioSesion {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
/*---------------------Mejoras-----------------------*/
    .InicioSesionContainer:hover {
        transform: translateY(20px);
    }


/*Degradado y transicion btn*/
#btnIniciarSesion {
    background: linear-gradient(135deg, #000241 0%, #1a3c85 50%, #76b0ff 100%);
    border: none;
    padding: 10px 20px;
    border-radius: 13px;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 2, 65, 0.3);
}

    #btnIniciarSesion:hover {
        background: linear-gradient(135deg, #00136b 0%, #2457c2 50%, #5a9cff 100%);
        transform: scale(1.04);
        box-shadow: 0 6px 14px rgba(0, 2, 65, 0.4);
    }
