/* Styles spécifiques au conteneur secuforoauth */
#secuforoauth-container {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#secuforoauth-container h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 20px;
}

#secuforoauth-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#secuforoauth-container form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

#secuforoauth-container form input[type="text"],
#secuforoauth-container form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f0f0f0;
}

#secuforoauth-container form input[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#secuforoauth-container form input[type="submit"]:hover {
    background-color: #218838;
}

/* Style pour le lien Register */
#secuforoauth-container a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    background-color: #e9f7ff;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#secuforoauth-container a:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

/* Style pour le bouton Unregister */
#secuforoauth-container #unregister-button {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
}

#secuforoauth-container #unregister-button:hover {
    background-color: #c82333;
}

/* Message d'erreur */
#secuforoauth-container .error {
    color: #dc3545;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

/* Styles spécifiques aux informations utilisateur */
#infoUser {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#infoUser h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 15px;
}

#infoUser #divInfos {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
}

#infoUser #divInfos p {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

#infoUser #divInfos p strong {
    font-weight: bold;
    color: #0056b3;
}

/* Style du footer pour les CGU */
#secuforoauth-footer {
    text-align: center;
    margin-top: 20px;
}

#secuforoauth-footer a {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #6c757d;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

#secuforoauth-footer a:hover {
    background-color: #6c757d;
    color: white;
}
