/* Styles spécifiques à secuforoauth Admin Page */

.secuforoauth-container {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    max-width: 800px;
    margin: 20px 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 h1 {
    text-align: center;
    color: #0073aa;
}

.secuforoauth-container p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.secuforoauth-buttons {
    text-align: center;
    margin-top: 20px;
}

.secuforoauth-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.secuforoauth-btn:hover {
    background-color: #005a87;
}

.secuforoauth-content {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    border-radius: 5px;
}

/* Style des messages d'erreur ou d'information */
.secuforoauth-message {
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.secuforoauth-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.secuforoauth-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
