﻿.loginContainer {
    height: 100vh;
    width: 100vw;
    background-color: var(--baseBg);
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9998;
}

    .loginContainer::before {
        content: "";
        position: absolute;
        inset: 0;
        transform: scale(1.05);
        z-index: 0;
        background-image: url('../asset/gif/animate_cover_1.gif');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        filter: blur(7px) brightness(0.8);
    }

    .loginContainer::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( 
            circle, 
            rgba(255, 255, 255, 0) 0%, /* Centro: Trasparente (0% opacità) */
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 1) 80% 
            ); 
        z-index: 9999;
    }

.loginWin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f8f9fa; /* bg-light */
    border-radius: 0.5rem; /* rounded */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); /* shadow */
    padding: 1.5rem;
    width: 500px;
}

.errorFiled {
    border: 2px solid red;
    box-shadow: 0 0 5px red;
    background-color: #ffe6e6;
}

.aermecLogo {
    background-image: url('../asset/loghi/aermecLogoOndine.png');
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    width:150px;
    height:50px;
    display:inline-block;
    margin-left:10px;
}