body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(to bottom, #8142C6, #000000); /* Dégradé de #8142C6 vers #000000 */
            color: #333;
            /*margin: 0;*/
            /*height: 100vh;*/ /* Assure que le fond couvre toute la hauteur de la page */            
            background : url(../../images/backgrounds/bg2.jpeg);
            background-size: cover;
            background-position: center center;
    		background-repeat: no-repeat;           
        }

        /* Bandeau fixe en haut */
        .banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /*background-color: #4B0082;*/ /* Violet intense */
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(50, 50, 50, 0.3)); /* Dégradé subtil */
    		backdrop-filter: blur(60px);
    		-webkit-backdrop-filter: blur(60px);
            color: white;
            padding: 10px 20px;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Partie gauche : texte */
        .banner-text {
            flex: 2; /* Le texte occupe deux tiers */
        }

        /* Partie droite : bouton */
        .banner-button {
            flex: 1; /* Le bouton occupe un tiers */
            text-align: right; /* Aligner le bouton à droite */
        }

        .banner button {
            background-color: #FFD700; /* Jaune vif */
            color: #4B0082; /* Texte violet */
            border: 2px solid #FFD700; /* Bordure jaune */
            border-radius: 5px;
            padding: 8px 16px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .banner button:hover {
            background-color: #4B0082; /* Violet intense au survol */
            color: #FFD700; /* Texte jaune */
            border-color: #FFD700; /* Bordure jaune */
        }

        /* Style du reste de la page */
        .login-container {
    max-width: 460px;
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(50, 50, 50, 0.3)); /* Dégradé subtil */
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    color: #fff;
}
        
        .login-title {
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            color: #FFFFFF;
            margin-bottom: 20px;
        }
        
        .form-control {
            border-radius: 8px;
            height: 50px;
            font-size: 16px;
        }
        
        .btn-primary {
            background-color: #007aff;
            border-color: #007aff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            height: 50px;
        }
        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .alert {
            border-radius: 8px;
        }
        .apple-link {
            text-align: center;
            margin-top: 10px;
        }
        .apple-link a {
            color: #FFFFFF;
            text-decoration: none;
        }
        .apple-link a:hover {
            text-decoration: underline;
        }
        
        .register-link {
            text-align: center;
            margin-top: 20px;
        }

        .register-link a {
            color: #FFFFFF /*#007aff*/;
            text-decoration: none;
        }

        .register-link a:hover {
            text-decoration: underline;
        }
        
        .form-footer {
            text-align: center;
            margin-top: 10px;
        }
        .form-footer a {
            text-decoration: none;
            color: #0d6efd;
        }
        .form-footer a:hover {
            text-decoration: underline;
        }
        /* Ajustement des champs pour le contraste et floating labels */
        .form-floating .form-control, .form-floating .form-select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            height: calc(3.5rem + 2px); /* Hauteur ajustée pour floating labels */
        }
        .form-floating .form-control::placeholder {
            color: transparent; /* Caché car le label flotte */
        }
        .form-floating label {
            color: rgba(255, 255, 255, 0.6); /* Label en gris clair par défaut */
        }
        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label,
        .form-floating > .form-select ~ label {
            color: #777; /* Label en blanc quand actif */
        }
        /* Style pour le bouton œil */
        .input-group .btn {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        @media (max-width: 768px) {
            .banner-text {
                font-size: 16px;
            }
            .banner button {
                font-size: 14px;
                padding: 6px 12px;
            }
        }