body{
    margin:0;
    padding:0;
    background: #748fc9 ;
    font-family: "Segoe UI", Arial, sans-serif;
    color:#9d9d9d;
    font-size:14px;
}

#clientLogo {
    text-align:center;
}

#clientLogo img {
    max-width: 100%;
    height: auto;
}

#sisosa {
    position:absolute;
    left:10px;
    bottom:10px;
    text-align:left;
}

form {
    margin: 40px 0 20px 0;
}

input[type="text"], input[type="password"] {
    font-family: "Segoe UI", Arial, sans-serif;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input[type="submit"] {
    font-family: "Segoe UI", Arial, sans-serif;
    width: 100%;
    font-size:15px;
    padding: 15px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    background-color: #748fc9;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}



/* Style pour le bouton "submit" lors du survol */
input[type="submit"]:hover {
    background-color: #6678b1;
}

.login-form label {
    font-family: "Segoe UI", Arial, sans-serif;
    display: inline-block; /* ou 'block' selon vos besoins */
    width: auto; /* annule la largeur fixe */
    float: none; /* annule le flottant */
    margin: 0; /* réinitialise la marge */
    text-align: left; /* alignement à gauche */
    position: static; /* annule la position relative */
}

@media (max-width: 480px) {
    input[type="text"], input[type="password"], input[type="submit"] {
        padding: 15px 20px; /* Plus de padding pour un toucher plus aisé */
    }
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 30px; /* Plus d'espace entre les champs de formulaire */
    }
}

#content {
    font-family: "Segoe UI", Arial, sans-serif;
    max-width: 650px; /* Largeur maximale pour les grands écrans */
    width: 90%; /* S'adapte à la largeur de l'écran */
    margin: 50px auto; /* Centré avec une marge automatique */
    padding: 50px; /* Espace intérieur */
    background: #fff url(siso.png) left bottom no-repeat;
    background-size: cover; /* L'image de fond couvre tout le conteneur */
    position: relative;
    box-shadow: 0px 0px 25px -4px rgb(0 0 0 / 69%);
    opacity: 0.9;
    border-radius: 20px;
    box-sizing: border-box; /* Inclut le padding dans le calcul de la largeur */
}

/* Media query pour les écrans de taille moyenne (par exemple, tablettes) */
@media (max-width: 768px) {
    #content {
        padding: 30px; /* Réduit le padding */
        margin: 20px auto;
    }
}

/* Media query pour les petits écrans (par exemple, téléphones mobiles) */
@media (max-width: 480px) {
    #content {
        padding: 15px; /* Padding minimal pour les petits écrans */
        margin: 20px auto;
    }
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input::placeholder {
    color: #aaa;
    transition: color 0.3s ease;
    font-family: "Segoe UI", Arial, sans-serif;
}

.form-group input:focus::placeholder {
    color: transparent; /* Rend le placeholder transparent lors du focus */
}

.form-group .floating-label {
    position: absolute;
    left: 0; /* Déplacé 10px plus à gauche */
    top: 15px; /* Un peu plus bas en position de repos */
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    font-size: 11px;
    color: #748fc9;
    padding: 0 5px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.form-group input:focus + .floating-label,
.form-group input:not(:placeholder-shown) + .floating-label {
    top: 3px; /* 2px plus haut que la position précédente lors du focus */
    opacity: 1;
}

#rememberdiv {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre la checkbox et le label */
    font-size: 14px;
    cursor: pointer;
}

/* Styliser la checkbox */
#rememberdiv input[type="checkbox"] {
    cursor: pointer;
}

/* Styliser le label */
#rememberdiv label {
    cursor: pointer;
    transition: color 0.3s; /* Transition pour un changement de couleur fluide */
}

/* Changer la couleur du label lorsque la checkbox est cochée */
#rememberdiv input[type="checkbox"]:checked + label {
    color: #748fc9; /* Nouvelle couleur du label lorsque la checkbox est cochée */
}

.form-group .fa {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#forgot {
    text-align: center;
    margin-bottom:40px;
}

#forgot a{
    font-family: "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: 11px;
    color: #9d9d9d;
}
#forgot a:hover {
    color:#748fc9;

}

.contactA {
    color:#748fc9;
}

.contactA:hover {
    color:#9d9d9d;
}

#loginError {
    background-color: #ffdddd;
    border-left: 6px solid #f44336;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s ease-out;
    height: auto;
}

/* Classe pour cacher l'élément avec une animation de glissement vers le haut */
.slideUp {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.form-group .fa.fa-eye {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-group .fa.fa-eye-slash {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

input[type="password"] {
    background: none; /* Supprime l'icône d'œil */
    -webkit-text-security: disc; /* Assure que les caractères restent masqués */
}

::-ms-reveal {
    display: none;
}

#generate
{
    float:left;
    cursor:pointer;
    color:#748fc9;
    font-size:12px;
    padding:3px 5px;
    margin-bottom:20px;
}

#generate:hover
{
    background-color:#748fc9;
    color:#fff;
}

#password-strength-status {
    float:right;
}

#password-strength-status
{
    font-size:11px;
}

.weak-password
{
    color:red;
}

.medium-password
{
    color:orange;
}

.strong-password
{
    color:green;
}

#pass.weak{
    border-bottom:4px solid red;
}

#pass.medium{
    border-bottom:4px solid orange;
}

#pass.strong{
    border-bottom:4px solid green;
}

#banner {
    font-size:24px;
    color:#fff;
    display: none; /* Initially hidden */
    background-color: #748fc9; /* Light red background */
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    }