/*_________________LOGIN PAGE STYLE____________________*/

        /* Stile per il background */
        .poppins-semibold {
            font-family: "Poppins", system-ui;
            font-weight: 600;
            font-style: normal;
        }

        .popover {
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 10px;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        .popover-body {
            background-color: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(3px);
            color:white;
            -webkit-backdrop-filter: blur(3px);
        }

        .centralDiv{
                        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/1918291/pexels-photo-1918291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 1;
            color: rgb(0, 0, 0);
            margin-bottom: -40px;
        }


        #central-div {
            margin: 100px 0px ;
            padding: 40px 30px;
            max-width: 800px;
            background-color: #39434e;
            border-radius: 10px;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        h2 {
            color: #0d78e9;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .form-control {
            border: 2px solid #0d78e9;
            border-radius: 5px;
            font-size: 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .form-control:focus {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .form-control::placeholder {
            color: rgb(0, 0, 0);
        }

        .btn-dark {
            background-color: #000000;
            color: #ffffff;
            border-radius: 5px;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .btn-dark:hover {
            background-color: #0d78e9;
            color: #fff;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        label {
            color: white;
        }

        .buttonWhiteOutline{
            border: 2px solid #0d78e9;
            background-color: #fff;
        }

        .buttonWhiteOutline:hover{
            border: 2px solid #0d78e9;
            background-color: #8e8e8e;
        }