﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    /*// background: url('/images/loginpage2.png') no-repeat center center fixed; /* Remplacez 'votre-image.jpg' par le chemin de votre image */
    background: url('/images/image-fond-login.gif') no-repeat center center fixed; /* Remplacez 'votre-image.jpg' par le chemin de votre image */
    /*  background: url('/images/FinalRender_3-ezgif.com-video-to-gif-converter.gif') no-repeat center center fixed; /* Remplacez 'votre-image.jpg' par le chemin de votre image */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-size: cover; */
    justify-content: center;
    height: 100vh;
    margin: 0;
}



#logoContainer {
    margin-bottom: 20px;
}

    #logoContainer img {
        max-width: 100%;
        height: auto;
    }



#submitButton {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

    #submitButton:hover {
        background-color: #0056b3;
    }

#forgotPasswordLink {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

    #forgotPasswordLink:hover {
        text-decoration: underline;
    }

.spinner-button {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border: none;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
}

.class-Btn {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border: none;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
}

.spinner {
    display: none;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    animation: spin 1s linear infinite;
}


#backgroundVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

/*#loginContainer {
    position: relative;
    z-index: 1;*/ /* pour s'assurer que le formulaire est au-dessus de la vidéo */
    /*background-color: rgba(255, 255, 255, 0.85);*/ /* optionnel : fond semi-transparent */
    /*padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}*/

#loginContainer {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

#loginFormContainer {
    margin-bottom: 20px;
    z-index: 1;
    position: relative;

}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
