/* Styles Généraux */
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    background: #f4f4f4; 
}

button { 
    padding: 10px 18px; 
    cursor: pointer; 
    border-radius: 8px; 
    border: none; 
    font-weight: bold; 
    transition: 0.2s; 
}

/* Page de Connexion (index.html) */
.auth-container { 
    background: white; 
    padding: 35px; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    width: 100%; 
    max-width: 400px; 
}

.auth-container h1 { 
    text-align: center; 
    color: #333; 
    margin-bottom: 25px; 
    font-size: 26px; 
}

form { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

form input { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    font-size: 15px; 
    outline: none;
}

form input:focus { 
    border-color: #1a73e8; 
}

.btn-auth { 
    background: #1a73e8; 
    color: white; 
    font-size: 16px; 
}

.btn-auth:hover { 
    background: #155cb4; 
}

.links { 
    margin-top: 20px; 
    display: flex; 
    flex-direction: column; /* Aligne les liens verticalement */
    align-items: center;    /* Centre les liens */
    gap: 10px;              /* Espace de 10px entre les deux liens */
    font-size: 14px; 
}

.link { 
    color: #1a73e8; 
    cursor: pointer; 
}

.link:hover { 
    text-decoration: underline; 
}
