/* Reprise de tes variables home.css */
:root {
    --bg: #181a1b;
    --bg-card: #232527;
    --text: #e4e6e7;
    --accent: #4f8cff;
    --border: #2c2f31;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-family: 'Rubik Distressed', cursive;
    color: var(--accent);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.instruction-text {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Centre le bouton Google */
.g_id_signin {
    display: flex;
    justify-content: center;
}

/* Animation d'entrée */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}