main {
    display: flex;
    position: relative;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: url("/resources/bg-desktop.jpg") no-repeat center / cover; 
}
.blur {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;  
    backdrop-filter: saturate(80%) blur(4px);
}

#form-content {
    /* background-color: rgb(177, 177, 177); */
    background: white;
    height: 580px;
    min-height: 300px;
    width: 445px;
    /* width: 25%; */
    min-width: 250px;
    margin: 15px;
    border-radius: 10px;   
    z-index: 1;
    -webkit-box-shadow: 0px 0px 8px 1px var(--dark-grey); 
    box-shadow: 0px 0px 8px 1px var(--dark-grey);

}

    #form-container {
        /* filter: blur(8px); */
        /* -webkit-filter: blur(8px); */
        height: 100%;
        width: 100%;
        padding: 33px;
        z-index: 2;
        border-radius: 10px;   
        justify-content: space-evenly;
        /* backdrop-filter: blur(10px); */

    }
        .login_title {
            align-items: center;
            justify-content: space-evenly;
            height: 30%;
            width: 100%;
            /* border-bottom: var(--bleu-main) solid 1px; */
            font-weight: 500;
        }
            .login_title h1{
                color: var(--bleu-main);
                font-size: 25px;
                text-transform: uppercase;
            }
        
            .logo-tvi {
/*                width: 80px;*/
                height: 80px;
            }

        #login {
            height: 70%;
            width: 100%;
            justify-content: space-evenly;
            /* backdrop-filter: blur(8px);  */
        }
            .user-input {
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                width: 100%;
                height: 50px;
                border: none;
            }

            .user-input input {
                width: 100%;
                height: 80%;
                padding: 0 5px;
                border: none;
                color: var(--bleu-main);
                border-bottom: var(--medium-grey) 2px solid;
                transition: border 0.2s 0.1s ease;
                background: white;
            }

            .user-input input:hover,
            .user-input input:focus {
                border-bottom: var(--bleu-main) 2px solid;
            }
            .user-input input::placeholder {
                /* text-align: center; */
                color: var(--bleu-main);
                opacity: 0.4;
            }

            .icon-visible {
                position: absolute;
                background: url("/SVG/eye-open3.svg") no-repeat center;
                height: 20px;
                width: 20px;
                cursor: pointer;
                /* background-color: aqua; */
                top: 40%;
                left: 92%;
                moz-transition: background 0.1s ease-in-out;
                -o-transition: background 0.1s ease-in-out;
                -webkit-transition: background 0.1s ease-in-out;
                transition: background 0.1s ease-in-out;
            }

            .icon-visible.visible {
                background: url("/SVG/eye-closed3.svg") no-repeat center;
            }

            .text-error {
                color: red;
                line-height: 20px;
            }

            .login_button {
                background-color: var(--bleu-main);
                text-transform: uppercase;
                color: white;
                border-radius: 5px;
                margin-top: 40px;
                height: 45px;
                cursor: pointer;
                background-size: 300% 100%;
                outline: none;
            }

            .login_button:focus {
                outline: none;
            }

            .login_button:hover {    
                background-position: 100% 0;
                moz-transition: all .4s ease;
                -o-transition: all .4s ease;
                -webkit-transition: all .4s ease;
                transition: all .4s ease;
                background-image: linear-gradient(to right, var(--bleu-main), #46538f, #11337e, var(--bleu-main));
                box-shadow: 0 4px 10px 0 var(--bleu-main);
            }

            #login a:nth-of-type(1) {
                margin-top: 40px;
            }
            #login a {
                color: var(--bleu-main);
                font-size: 12px;
                text-align: center;
                width: auto;
            }
            

            .normal {
                text-transform: none;
            }

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-size: 14px;
}

    .popup-box button {
        margin-top: 15px;
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
