/*
 Theme Name:   GRIM Child Theme
 Template:     twentytwentyfour
 Version:      1.0
 Description:  Thème enfant personnalisé pour afficher une page d'accueil avec le logo GRIM et un bouton de connexion.
 Author:       Votre Nom
*/

/* Styles personnalisés */
body {
    background-color: #6646FF; /* Fond violet */
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: invert(100%); /* Logo en blanc */
}

.login-button {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-button:hover {
    background-color: #333;
    color: white;
}
